37 lines
760 B
JavaScript
37 lines
760 B
JavaScript
![]() |
export default {
|
||
|
users: {
|
||
|
list: 'user/list',
|
||
|
add: 'user/add'
|
||
|
},
|
||
|
profiles: {
|
||
|
list: 'profile/list',
|
||
|
add: 'profiles/add'
|
||
|
},
|
||
|
papers: {
|
||
|
list: 'project/list',
|
||
|
add: 'project/add'
|
||
|
},
|
||
|
docs: {
|
||
|
list: 'docs/list',
|
||
|
add: 'docs/add',
|
||
|
|
||
|
},
|
||
|
permissions: {
|
||
|
userPermissions: 'perm/add',
|
||
|
rolePermissions: 'perm/add'
|
||
|
},
|
||
|
comments: {
|
||
|
list: 'comment/20',
|
||
|
add: 'comment/add/20',
|
||
|
update: 'comment/edit/20',
|
||
|
documentComment: 'comment/parags/groupby/20',
|
||
|
addCommentToSelectedParag: 'paragraph/edit',
|
||
|
paragraphCommentList:'comment/20',
|
||
|
removeItem:'comment/delete/20',
|
||
|
replyto:'/comment/add/20',
|
||
|
|
||
|
},
|
||
|
moveOne: 'doc/order/move/one',
|
||
|
moveParent: 'doc/order/move/parent',
|
||
|
delete: 'doc/del',
|
||
|
}
|