diff options
Diffstat (limited to 'apps/files_reminders/src/init.ts')
-rw-r--r-- | apps/files_reminders/src/init.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/files_reminders/src/init.ts b/apps/files_reminders/src/init.ts index 59f5d23ebe3..d1642626f10 100644 --- a/apps/files_reminders/src/init.ts +++ b/apps/files_reminders/src/init.ts @@ -19,11 +19,16 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ -import { registerFileAction } from '@nextcloud/files' + +import { registerDavProperty, registerFileAction } from '@nextcloud/files' import { action as menuAction } from './actions/setReminderMenuAction' +import { action as clearAction } from './actions/clearReminderAction' import { actions as suggestionActions } from './actions/setReminderSuggestionActions' import { action as customAction } from './actions/setReminderCustomAction' +registerDavProperty('nc:reminder-due-date', { nc: 'http://nextcloud.org/ns' }) + +registerFileAction(clearAction) registerFileAction(menuAction) registerFileAction(customAction) suggestionActions.forEach((action) => registerFileAction(action)) |