-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
151 lines (151 loc) · 3.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "comments",
"displayName": "评论插件",
"description": "SSCMS 评论插件用于在页面中提交及显示评论",
"version": "1.3.0",
"license": "AGPL-3.0",
"publisher": "sscms",
"engines": {
"sscms": "^7.3.0"
},
"categories": [
"Other"
],
"keywords": [
"评论",
"内容评论"
],
"repository": {
"type": "git",
"url": "https://github.com/siteserver/sscms.comments"
},
"icon": "/assets/comments/logo.svg",
"output": "",
"main": "SSCMS.Comments.dll",
"applyToSites": true,
"applyToChannels": true,
"extensions": {
"permissions": {
"comments_manage": {
"text": "评论管理",
"type": ["web", "wx"]
},
"comments_settings": {
"text": "选项设置",
"type": ["web", "wx"]
},
"comments_templates": {
"text": "评论模板",
"type": ["web", "wx"]
},
"comments_channels_config": {
"text": "栏目设置",
"type": ["web", "wx"]
}
},
"menus": {
"comments_site_all": {
"text": "评论",
"iconClass": "ion-chatbubble-working",
"type": ["web", "wx"],
"permissions": [
"comments_manage",
"comments_settings",
"comments_templates",
"comments_channels_config"
],
"menus": {
"comments_manage": {
"text": "评论管理",
"link": "/ss-admin/comments/manage/",
"permissions": ["comments_manage"],
"order": 1
},
"comments_settings": {
"text": "选项设置",
"link": "/ss-admin/comments/settings/",
"permissions": ["comments_settings"],
"order": 2
},
"comments_templates": {
"text": "评论模板",
"link": "/ss-admin/comments/templates/",
"permissions": ["comments_templates"],
"order": 3
},
"comments_channels_config": {
"text": "内容评论设置",
"link": "/ss-admin/plugins/config/?pluginId=sscms.comments",
"permissions": ["comments_channels_config"],
"order": 4
}
}
},
"comments_contents_all": {
"text": "评论",
"type": ["content"],
"link": "/ss-admin/comments/manage/",
"permissions": [
"comments_manage"
],
"order": 1
},
"comments_channels_all": {
"text": "评论",
"type": ["channel"],
"link": "/ss-admin/comments/manage/",
"permissions": [
"comments_manage"
],
"order": 1
}
},
"tables": {
"sscms_comments_settings": {
"columns": [
{
"attributeName": "SiteId",
"dataType": "Integer"
}
]
},
"sscms_comments": {
"columns": [
{
"attributeName": "SiteId",
"dataType": "Integer"
},
{
"attributeName": "ChannelId",
"dataType": "Integer"
},
{
"attributeName": "ContentId",
"dataType": "Integer"
},
{
"attributeName": "UserId",
"dataType": "Integer"
},
{
"attributeName": "IpAddress",
"dataType": "VarChar"
},
{
"attributeName": "Status",
"dataType": "VarChar"
},
{
"attributeName": "ParentId",
"dataType": "Integer"
},
{
"attributeName": "Content",
"dataType": "VarChar",
"dataLength": 2000
}
]
}
}
}
}