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

committed by
Ömer Faruk Aydın

parent
651cceec14
commit
1e00c7d14e
@@ -1,10 +1,13 @@
|
||||
import { IJSONObject } from '@automatisch/types';
|
||||
import FavoritePhoto from './triggers/favorite-photo';
|
||||
import NewPhotoInAlbum from './triggers/new-photo-in-album';
|
||||
|
||||
export default class Triggers {
|
||||
favoritePhoto: FavoritePhoto;
|
||||
newPhotoInAlbum: NewPhotoInAlbum;
|
||||
|
||||
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
|
||||
this.favoritePhoto = new FavoritePhoto(connectionData);
|
||||
this.newPhotoInAlbum = new NewPhotoInAlbum(connectionData, parameters);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user