-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
50 lines (50 loc) · 1.03 KB
/
Copy pathplugin.json
File metadata and controls
50 lines (50 loc) · 1.03 KB
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
{
"id": "nodebb-plugin-cline-links",
"name": "Cline Links",
"description": "מנקה קישורים שיתופיים מתוכן הפוסטים",
"url": "",
"library": "./library.js",
"hooks": [
{
"hook": "static:app.load",
"method": "init"
},
{
"hook": "filter:admin.header.build",
"method": "addAdminNavigation"
},
{
"hook": "filter:post.create",
"method": "handlePostFilter"
},
{
"hook": "filter:post.edit",
"method": "handlePostFilter"
},
{
"hook": "action:post.save",
"method": "handlePostSave"
},
{
"hook": "action:post.edit",
"method": "handlePostEdit"
},
{
"hook": "filter:email.params",
"method": "handleEmailParams"
}
],
"modules": {
"../admin/plugins/cline-links.js": "static/lib/admin.js"
},
"acpScripts": [
"static/lib/admin.js"
],
"templates": "templates",
"staticDirs": {
"static": "static"
},
"nbbpm": {
"compatibility": "^2.0.0 || ^3.0.0 || ^4.0.0"
}
}