refactor: inline auth, data, triggers and actions in apps

This commit is contained in:
Ali BARIN
2022-10-28 15:48:39 +02:00
parent 179fe512af
commit 9a973c8257
47 changed files with 233 additions and 167 deletions

View File

@@ -1,4 +1,6 @@
import defineApp from '../../helpers/define-app';
import auth from './auth';
import actions from './actions';
export default defineApp({
name: 'SMTP',
@@ -10,4 +12,6 @@ export default defineApp({
apiBaseUrl: '',
primaryColor: '2DAAE1',
beforeRequest: [],
auth,
actions,
});