feat(ntfy): add send message action

This commit is contained in:
Ali BARIN
2022-12-05 00:45:30 +01:00
parent 6995323a45
commit e1c080f237
3 changed files with 108 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import actions from './actions';
export default defineApp({
name: 'Ntfy',
@@ -13,4 +14,5 @@ export default defineApp({
primaryColor: '56bda8',
beforeRequest: [addAuthHeader],
auth,
actions,
});