feat: add new favorite photo trigger in flickr
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
d4ad8645c9
commit
651cceec14
10
packages/backend/src/apps/flickr/triggers.ts
Normal file
10
packages/backend/src/apps/flickr/triggers.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { IJSONObject } from '@automatisch/types';
|
||||
import FavoritePhoto from './triggers/favorite-photo';
|
||||
|
||||
export default class Triggers {
|
||||
favoritePhoto: FavoritePhoto;
|
||||
|
||||
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
|
||||
this.favoritePhoto = new FavoritePhoto(connectionData);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user