[ADF-2540] Lock node feature (#3138)

* add adf-node-lock directive

* add lock-node service + button in context menu

* unit tests

* docs

* unit tests fix

* Remove unnecessary imports

* PR changes

* Remove fit from tests

* Update specific node from list on lock/ulock
This commit is contained in:
Alex Bolboșenco
2018-04-06 08:59:28 +03:00
committed by Denys Vuika
parent 7b7e39d989
commit 7d1b4bf14a
26 changed files with 643 additions and 29 deletions

View File

@@ -21,6 +21,7 @@ import { MaterialModule } from '../material.module';
import { NodeDownloadDirective } from './node-download.directive';
import { NodeSharedDirective } from './node-share.directive';
import { NodeLockDirective } from './node-lock.directive';
@NgModule({
imports: [
@@ -29,11 +30,13 @@ import { NodeSharedDirective } from './node-share.directive';
],
declarations: [
NodeDownloadDirective,
NodeSharedDirective
NodeSharedDirective,
NodeLockDirective
],
exports: [
NodeDownloadDirective,
NodeSharedDirective
NodeSharedDirective,
NodeLockDirective
]
})
export class ContentDirectiveModule {