mirror of
https://github.com/arnaucube/openEventsPlatformApp.git
synced 2026-02-07 19:56:40 +01:00
started user zone, post new event started, needs more implementation
This commit is contained in:
@@ -16,7 +16,9 @@ angular.module('app', [
|
||||
'app.byCategories',
|
||||
'app.users',
|
||||
'app.user',
|
||||
'app.login'
|
||||
'app.login',
|
||||
'app.userZone',
|
||||
'app.newEvent'
|
||||
])
|
||||
|
||||
.run(function($ionicPlatform) {
|
||||
@@ -126,6 +128,24 @@ angular.module('app', [
|
||||
controller: 'LoginCtrl'
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.userZone', {
|
||||
url: '/userZone',
|
||||
views: {
|
||||
'menuContent': {
|
||||
templateUrl: 'templates/userZone.html',
|
||||
controller: 'UserZoneCtrl'
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.newEvent', {
|
||||
url: '/newEvent',
|
||||
views: {
|
||||
'menuContent': {
|
||||
templateUrl: 'templates/newEvent.html',
|
||||
controller: 'NewEventCtrl'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// if none of the above states are matched, use this as the fallback
|
||||
|
||||
Reference in New Issue
Block a user