File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
src/Orchard.Web/Modules/Orchard.Users/Controllers Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,7 @@ public ActionResult LogOff(string returnUrl) {
101
101
return this . RedirectLocal ( returnUrl ) ;
102
102
}
103
103
104
- int MinPasswordLength {
105
- get {
106
- return _membershipService . GetSettings ( ) . MinRequiredPasswordLength ;
107
- }
108
- }
104
+ int MinPasswordLength => _membershipService . GetSettings ( ) . MinRequiredPasswordLength ;
109
105
110
106
[ AlwaysAccessible ]
111
107
public ActionResult Register ( ) {
@@ -293,22 +289,27 @@ public ActionResult ChangePasswordSuccess() {
293
289
return View ( ) ;
294
290
}
295
291
292
+ [ AlwaysAccessible ]
296
293
public ActionResult RegistrationPending ( ) {
297
294
return View ( ) ;
298
295
}
299
296
297
+ [ AlwaysAccessible ]
300
298
public ActionResult ChallengeEmailSent ( ) {
301
299
return View ( ) ;
302
300
}
303
301
302
+ [ AlwaysAccessible ]
304
303
public ActionResult ChallengeEmailSuccess ( ) {
305
304
return View ( ) ;
306
305
}
307
306
307
+ [ AlwaysAccessible ]
308
308
public ActionResult ChallengeEmailFail ( ) {
309
309
return View ( ) ;
310
310
}
311
311
312
+ [ AlwaysAccessible ]
312
313
public ActionResult ChallengeEmail ( string nonce ) {
313
314
var user = _userService . ValidateChallenge ( nonce ) ;
314
315
You can’t perform that action at this time.
0 commit comments