|
254 | 254 | .state('start', new State(USER_ROLES, '', 'js/home/home.html').build()) |
255 | 255 |
|
256 | 256 | .state('home', new State(USER_ROLES, 'home', 'js/home/home.html').build()) |
257 | | - |
| 257 | + |
258 | 258 | .state('conference', new State(USER_ROLES, 'conference', 'js/conference/conference.html') |
259 | 259 | .build()) |
260 | | - |
| 260 | + |
261 | 261 | .state('valid', new State(USER_ROLES, 'valid', 'js/home/home.html') |
262 | 262 | .controller( |
263 | 263 | /* @ngInject */ |
|
382 | 382 | }) |
383 | 383 | .build()) |
384 | 384 |
|
| 385 | + .state('mixit16ext', new State(USER_ROLES, 'mixit16/:type', 'js/sessions/talks.html') |
| 386 | + .controller('SessionsClosedCtrl') |
| 387 | + .data({year: 2016}) |
| 388 | + .resolve({ |
| 389 | + sessions : getAll2016Sessions, |
| 390 | + sponsors: getAll2016Sponsors |
| 391 | + }) |
| 392 | + .build()) |
| 393 | + |
385 | 394 | .state('mixit15', new State(USER_ROLES, 'mixit15?search', 'js/sessions/talks.html') |
386 | 395 | .controller('SessionsClosedCtrl') |
387 | 396 | .data({year: 2015}) |
|
391 | 400 | }) |
392 | 401 | .build()) |
393 | 402 |
|
| 403 | + .state('mixit15ext', new State(USER_ROLES, 'mixit15/:type', 'js/sessions/talks.html') |
| 404 | + .controller('SessionsClosedCtrl') |
| 405 | + .data({year: 2015}) |
| 406 | + .resolve({ |
| 407 | + sessions : getAll2015Sessions, |
| 408 | + sponsors: getAll2015Sponsors |
| 409 | + }) |
| 410 | + .build()) |
| 411 | + |
394 | 412 | .state('mixit14', new State(USER_ROLES, 'mixit14?search', 'js/sessions/talks.html') |
395 | 413 | .controller('SessionsClosedCtrl') |
396 | 414 | .data({year: 2014}) |
|
400 | 418 | }) |
401 | 419 | .build()) |
402 | 420 |
|
| 421 | + .state('mixit14ext', new State(USER_ROLES, 'mixit14/:type', 'js/sessions/talks.html') |
| 422 | + .controller('SessionsClosedCtrl') |
| 423 | + .data({year: 2014}) |
| 424 | + .resolve({ |
| 425 | + sessions : getAll2014Sessions, |
| 426 | + sponsors: getAll2014Sponsors |
| 427 | + }) |
| 428 | + .build()) |
| 429 | + |
403 | 430 | .state('mixit13', new State(USER_ROLES, 'mixit13?search', 'js/sessions/talks.html') |
404 | 431 | .controller('SessionsClosedCtrl') |
405 | 432 | .data({year: 2013}) |
|
409 | 436 | }) |
410 | 437 | .build()) |
411 | 438 |
|
| 439 | + .state('mixit13ext', new State(USER_ROLES, 'mixit13/:type', 'js/sessions/talks.html') |
| 440 | + .controller('SessionsClosedCtrl') |
| 441 | + .data({year: 2013}) |
| 442 | + .resolve({ |
| 443 | + sessions : getAll2014Sessions, |
| 444 | + sponsors: getAll2014Sponsors |
| 445 | + }) |
| 446 | + .build()) |
| 447 | + |
412 | 448 | .state('mixit12', new State(USER_ROLES, 'mixit12?search', 'js/sessions/talks.html') |
413 | 449 | .controller('SessionsClosedCtrl') |
414 | 450 | .data({year: 2012}) |
|
418 | 454 | }) |
419 | 455 | .build()) |
420 | 456 |
|
| 457 | + .state('mixit12ext', new State(USER_ROLES, 'mixit12/:type', 'js/sessions/talks.html') |
| 458 | + .controller('SessionsClosedCtrl') |
| 459 | + .data({year: 2012}) |
| 460 | + .resolve({ |
| 461 | + sessions : getAll2014Sessions, |
| 462 | + sponsors: getAll2014Sponsors |
| 463 | + }) |
| 464 | + .build()) |
| 465 | + |
421 | 466 | .state('lightnings', new State(USER_ROLES, 'lightnings?search', 'js/lt/lightningtalks.html') |
422 | 467 | .controller('LightningtalksCtrl') |
423 | 468 | .resolve({ |
|
543 | 588 | .build()) |
544 | 589 |
|
545 | 590 | .state('multimedia', new State(USER_ROLES, 'multimedia', 'js/multimedia/multimedia.html'). |
546 | | - build()) |
| 591 | + build()) |
547 | 592 |
|
548 | 593 | .state('codeofconduct', new State(USER_ROLES, 'codeofconduct', 'js/codeofconduct/codeofconduct.html') |
549 | 594 | .build()) |
|
586 | 631 | .state('logout', new State(USER_ROLES, 'logout', 'js/home/home.html') |
587 | 632 | .build()) |
588 | 633 |
|
| 634 | + .state('login', new State(USER_ROLES, 'login', 'js/login/login.html') |
| 635 | + .controller('LoginCtrl') |
| 636 | + .build()) |
| 637 | + |
| 638 | + .state('login1', new State(USER_ROLES, 'login/:id', 'js/login/login.html') |
| 639 | + .controller('LoginCtrl') |
| 640 | + .build()) |
| 641 | + |
| 642 | + .state('login2', new State(USER_ROLES, 'login/with/:id', 'js/login/login.html') |
| 643 | + .controller('LoginCtrl') |
| 644 | + .build()) |
| 645 | + |
589 | 646 | .state('authent', new State(USER_ROLES, 'authent?redirect', 'js/login/login.html') |
590 | 647 | .controller('LoginCtrl') |
591 | 648 | .build()) |
|
0 commit comments