mirror of
https://github.com/arnaucube/openEventsPlatformApp.git
synced 2026-02-08 20:26:39 +01:00
getEvents by following users, and some pages
This commit is contained in:
@@ -24,7 +24,10 @@ angular.module('app', [
|
||||
'app.user',
|
||||
'app.login',
|
||||
'app.userZone',
|
||||
'app.newEvent'
|
||||
'app.newEvent',
|
||||
'app.editUser',
|
||||
'app.statistics',
|
||||
'app.newAlert'
|
||||
])
|
||||
|
||||
.run(function($ionicPlatform) {
|
||||
@@ -206,6 +209,33 @@ angular.module('app', [
|
||||
controller: 'NewEventCtrl'
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.editUser', {
|
||||
url: '/editUser',
|
||||
views: {
|
||||
'menuContent': {
|
||||
templateUrl: 'templates/editUser.html',
|
||||
controller: 'EditUserCtrl'
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.statistics', {
|
||||
url: '/statistics',
|
||||
views: {
|
||||
'menuContent': {
|
||||
templateUrl: 'templates/statistics.html',
|
||||
controller: 'StatisticsCtrl'
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.newAlert', {
|
||||
url: '/newAlert',
|
||||
views: {
|
||||
'menuContent': {
|
||||
templateUrl: 'templates/newAlert.html',
|
||||
controller: 'NewAlertCtrl'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// if none of the above states are matched, use this as the fallback
|
||||
|
||||
Reference in New Issue
Block a user