feat(bluesky): add create post action

This commit is contained in:
Rıdvan Akca
2024-05-24 12:08:11 +02:00
parent 3c44f55f19
commit c07a02ef31
8 changed files with 142 additions and 1 deletions

View File

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