-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
116 lines (116 loc) · 2.78 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
{
"name": "login",
"displayName": "用户登录插件",
"description": "SSCMS 用户登录插件",
"version": "1.2.2",
"license": "AGPL-3.0",
"publisher": "sscms",
"engines": {
"sscms": "^7.2.2"
},
"categories": [
"Other"
],
"keywords": [
"登录",
"注册",
"第三方登录"
],
"repository": {
"type": "git",
"url": "https://github.com/siteserver/sscms.login"
},
"icon": "/assets/login/logo.svg",
"output": "",
"main": "SSCMS.Login.dll",
"applyToSites": false,
"applyToChannels": false,
"extensions": {
"permissions": {
"login_templates": {
"text": "显示模板",
"type": ["app"]
},
"login_weixin": {
"text": "微信登录设置",
"type": ["app"]
},
"login_qq": {
"text": "QQ 登录设置",
"type": ["app"]
},
"login_weibo": {
"text": "微博登录设置",
"type": ["app"]
}
},
"menus:app_plugins_all:menus": {
"login_all": {
"text": "用户登录",
"iconClass": "fa fa-user",
"type": ["app"],
"permissions": [
"login_templates",
"login_weixin",
"login_qq",
"login_weibo"
],
"menus": {
"login_template": {
"text": "显示模板",
"link": "/ss-admin/login/templates/?type=login",
"permissions": ["login_templates"],
"order": 1
},
"login_connect_all": {
"text": "第三方登录设置",
"permissions": [
"login_weixin",
"login_qq",
"login_weibo"
],
"order": 2,
"menus": {
"login_weixin": {
"text": "微信登录设置",
"link": "/ss-admin/login/connectWeixin/",
"permissions": ["login_weixin"],
"order": 1
},
"login_qq": {
"text": "QQ 登录设置",
"link": "/ss-admin/login/connectQq/",
"permissions": ["login_qq"],
"order": 2
},
"login_weibo": {
"text": "微博登录设置",
"link": "/ss-admin/login/connectWeibo/",
"permissions": ["login_weibo"],
"order": 3
}
}
}
}
}
},
"tables": {
"sscms_login_oauth": {
"columns": [
{
"attributeName": "UserName",
"dataType": "VarChar"
},
{
"attributeName": "Source",
"dataType": "VarChar"
},
{
"attributeName": "UniqueId",
"dataType": "VarChar"
}
]
}
}
}
}