modify work structure
[angular-mojolicious.git] / public / app / conference / registration.js
index 1551a95..cdd76d6 100644 (file)
@@ -10,14 +10,19 @@ function Registration($resource,$xhr){
                work: {
                        title: '',
                        abstract: '',
-                       authors:[ { name:'', surname:'', inst:'', email:'' } ]
+                       authors:[ { name:'', surname:'', inst:'', email:'' } ],
+                       organizers: []
                },
-               symposium: { organizers: [ {name:'', surname:'', inst:'', email:'' } ], work_nr: 1 }
+               symposium: { 
+                       organizers: [], 
+                       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'];