diff --git a/app/library/App/Bootstrap/CollectionBootstrap.php b/app/library/App/Bootstrap/CollectionBootstrap.php index 67ac50d..0ceda4e 100755 --- a/app/library/App/Bootstrap/CollectionBootstrap.php +++ b/app/library/App/Bootstrap/CollectionBootstrap.php @@ -18,11 +18,11 @@ class CollectionBootstrap implements BootstrapInterface public function run(Api $api, DiInterface $di, Config $config) { $api - ->collection(new ExportCollection('/export')) - ->resource(new UserResource('/users')) ->resource(new GaResource('/ga')) + ->resource(new UserResource('/users')) ->resource(new AlbumResource('/albums')) ->resource(new PhotoResource('/photos')) - ->resource(new ProjectResource('/projects')); + ->resource(new ProjectResource('/projects')) + ->collection(new ExportCollection('/export')); } } -- libgit2 0.21.4