split database name in own file and variable
[angular-mojolicious.git] / public / app / conference / registration.js
index 1551a95..488b129 100644 (file)
@@ -14,10 +14,11 @@ function Registration($resource,$xhr){
                },
                symposium: { organizers: [ {name:'', surname:'', inst:'', email:'' } ], work_nr: 1 }
        };
-       this.Registration = $resource( '/data/conference/Registration/:id', { id:'' } );
+       this.Registration = $resource( '/data/:database/Registration/:id', { id:'', database: database } );
        this.reset();
        this.$watch('$location.hashPath', this.hash_change);
        this.$xhr = $xhr;
+       console.debug( 'database', database );
 }
 Registration.$inject=['$resource','$xhr'];