mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-16 17:41:50 +02:00
New Features
- added notifications - added toggle switches - added delete feature - added email verification
This commit is contained in:
parent
e61ef151f6
commit
1b20a11bba
91 changed files with 6859 additions and 2756 deletions
19
public/js/controllers/verification.controller.js
Normal file
19
public/js/controllers/verification.controller.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
angular.module('rallly')
|
||||
.controller('VerificationCtrl', function(Event, Notification, $state){
|
||||
Event.verify({id : $state.params.id, code :$state.params.code}, function(){
|
||||
var notification = new Notification({
|
||||
title : 'Email Verified',
|
||||
message : 'Your email has been verified. You will now be able to receive email notifications for this event',
|
||||
type : 'success',
|
||||
timeout : 5000
|
||||
});
|
||||
}, function(e){
|
||||
var notification = new Notification({
|
||||
title : 'Verification Failed',
|
||||
message : 'Your verification code has expired.',
|
||||
type : 'error'
|
||||
});
|
||||
});
|
||||
$state.go('event', { id : $state.params.id });
|
||||
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue