Skip to content

Commit

Permalink
Edit Profile and Password disabled for demo purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
anindya-dhruba committed Jan 7, 2018
1 parent a4b4d47 commit c812cf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
methods: {
updatePassword() {
// uncomment the following 2 lines in your app
// alert('Edit Password is disabled for demo purpose');
// return;
this.$noty.info('Edit Password is disabled for demo purpose');
return;
this.loading = true;
axios.post(api.updateUserPassword, this.form)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
methods: {
updateProfile() {
// uncomment the following 2 lines to enable edit profile
// alert('Edit Profile is disabled for demo purpose');
// return;
this.$noty.info('Edit Profile is disabled for demo purpose');
return;
this.loading = true;
axios.post(api.updateUserProfile, this.form)
Expand Down

0 comments on commit c812cf1

Please sign in to comment.