refactor: inline auth, data, triggers and actions in apps
This commit is contained in:
11
packages/backend/src/apps/flickr/triggers/index.ts
Normal file
11
packages/backend/src/apps/flickr/triggers/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import newAlbums from './new-albums';
|
||||
import newFavoritePhotos from './new-favorite-photos';
|
||||
import newPhotos from './new-photos';
|
||||
import newPhotosInAlbums from './new-photos-in-album';
|
||||
|
||||
export default [
|
||||
newAlbums,
|
||||
newFavoritePhotos,
|
||||
newPhotos,
|
||||
newPhotosInAlbums,
|
||||
];
|
@@ -18,7 +18,7 @@ export default defineTrigger({
|
||||
{
|
||||
label: 'Album',
|
||||
key: 'album',
|
||||
type: 'dropdown',
|
||||
type: 'dropdown' as const,
|
||||
required: true,
|
||||
variables: false,
|
||||
source: {
|
||||
|
Reference in New Issue
Block a user