- updateUser service and implement added
This commit is contained in:
parent
69ad2028b8
commit
998bba0e29
2 changed files with 85 additions and 31 deletions
|
@ -134,12 +134,14 @@ body.noscroll
|
|||
margin-left: auto;
|
||||
}
|
||||
|
||||
.port_spacer{
|
||||
.port_spacer
|
||||
{
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
||||
.mail_suffix{
|
||||
.mail_suffix
|
||||
{
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
|
@ -149,6 +151,43 @@ body.noscroll
|
|||
position:relative;
|
||||
}
|
||||
|
||||
.listdemoBasicUsage md-divider
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.md-avatar img
|
||||
{
|
||||
/*TODO*/
|
||||
}
|
||||
|
||||
.feedContent
|
||||
{
|
||||
padding-left: 6%;
|
||||
font-size: 15px;
|
||||
display:table;
|
||||
}
|
||||
|
||||
.md-no-sticky
|
||||
{
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
.roundUserAvatar
|
||||
{
|
||||
width: 6%;
|
||||
height: auto;
|
||||
border-radius: 150px;
|
||||
-webkit-border-radius: 150px;
|
||||
-moz-border-radius: 150px;
|
||||
/*background: url(http://i61.tinypic.com/v86f7.png) no-repeat;*/
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, .8);
|
||||
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
|
||||
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*div.img campusAvatar
|
||||
{
|
||||
|
|
|
@ -57,10 +57,25 @@ angular.module('SeHub')
|
|||
$scope.submitClicked = function(ev)
|
||||
{
|
||||
var emailValid = false;
|
||||
var jsonUpdateUser =
|
||||
{
|
||||
"lecturerStat": "$scope.user.isLecturer",
|
||||
"campName": "$scope.campusName"
|
||||
}
|
||||
|
||||
if($scope.user.AcMail != null)
|
||||
{
|
||||
var fullMail = $scope.user.AcMail + $scope.campusObj.email_ending; // Holds the full academic email of the user
|
||||
|
||||
apiService.updateUser($scope.user.seToken, jsonUpdateUser).success(function(data)
|
||||
{
|
||||
|
||||
}).error(function()
|
||||
{
|
||||
// TODO Error
|
||||
console.log("Error occured on updateUser");
|
||||
});
|
||||
|
||||
console.log("Mail: " + fullMail);
|
||||
|
||||
apiService.sendValidationMail($scope.user.seToken, fullMail).success(function(data)
|
||||
|
|
Loading…
Reference in a new issue