1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-02 03:55:24 +02:00

document list: show by selected space/category

This commit is contained in:
Harvey Kandola 2017-09-26 16:30:16 +01:00
parent 2cee83d570
commit 5481de4e1c
21 changed files with 342 additions and 157 deletions

View file

@ -143,5 +143,13 @@ export default BaseService.extend({
}).then((response) => {
return response;
});
},
getSpaceCategoryMembership(spaceId) {
return this.get('ajax').request(`category/member/space/${spaceId}`, {
method: 'GET'
}).then((response) => {
return response;
});
}
});