feat(reddit): add create link post action

This commit is contained in:
Rıdvan Akca
2023-11-10 18:18:26 +03:00
parent 97bcd3792b
commit ff00644e62
5 changed files with 71 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import triggers from './triggers';
import actions from './actions';
export default defineApp({
name: 'Reddit',
@@ -15,4 +16,5 @@ export default defineApp({
beforeRequest: [addAuthHeader],
auth,
triggers,
actions,
});