mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Compare commits
1 Commits
feature/as
...
1.4.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b96882ee3b |
@@ -291,6 +291,7 @@ namespace Orchard.Users.Controllers {
|
|||||||
return RedirectToAction("Index");
|
return RedirectToAction("Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpPost]
|
||||||
public ActionResult SendChallengeEmail(int id) {
|
public ActionResult SendChallengeEmail(int id) {
|
||||||
if (!Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to manage users")))
|
if (!Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to manage users")))
|
||||||
return new HttpUnauthorizedResult();
|
return new HttpUnauthorizedResult();
|
||||||
@@ -311,7 +312,9 @@ namespace Orchard.Users.Controllers {
|
|||||||
return RedirectToAction("Index");
|
return RedirectToAction("Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
public ActionResult Approve(int id) {
|
[HttpPost]
|
||||||
|
public ActionResult Approve(int id)
|
||||||
|
{
|
||||||
if (!Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to manage users")))
|
if (!Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to manage users")))
|
||||||
return new HttpUnauthorizedResult();
|
return new HttpUnauthorizedResult();
|
||||||
|
|
||||||
@@ -328,7 +331,9 @@ namespace Orchard.Users.Controllers {
|
|||||||
return RedirectToAction("Index");
|
return RedirectToAction("Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
public ActionResult Moderate(int id) {
|
[HttpPost]
|
||||||
|
public ActionResult Moderate(int id)
|
||||||
|
{
|
||||||
if (!Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to manage users")))
|
if (!Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to manage users")))
|
||||||
return new HttpUnauthorizedResult();
|
return new HttpUnauthorizedResult();
|
||||||
|
|
||||||
|
|||||||
@@ -71,12 +71,12 @@
|
|||||||
@Html.ActionLink(T("Edit").ToString(), "Edit", new { entry.User.Id }) |
|
@Html.ActionLink(T("Edit").ToString(), "Edit", new { entry.User.Id }) |
|
||||||
@Html.ActionLink(T("Delete").ToString(), "Delete", new { entry.User.Id}, new { itemprop = "RemoveUrl UnsafeUrl" }) |
|
@Html.ActionLink(T("Delete").ToString(), "Delete", new { entry.User.Id}, new { itemprop = "RemoveUrl UnsafeUrl" }) |
|
||||||
@if (entry.User.RegistrationStatus == UserStatus.Pending) {
|
@if (entry.User.RegistrationStatus == UserStatus.Pending) {
|
||||||
@Html.ActionLink(T("Approve").ToString(), "Approve", new { entry.User.Id })
|
@Html.ActionLink(T("Approve").ToString(), "Approve", new { entry.User.Id }, new { itemprop = "UnsafeUrl" })
|
||||||
} else {
|
} else {
|
||||||
@Html.ActionLink(T("Disable").ToString(), "Moderate", new { entry.User.Id })
|
@Html.ActionLink(T("Disable").ToString(), "Moderate", new { entry.User.Id }, new { itemprop = "UnsafeUrl" })
|
||||||
}
|
}
|
||||||
@if (entry.User.EmailStatus == UserStatus.Pending) { <text>|</text>
|
@if (entry.User.EmailStatus == UserStatus.Pending) { <text>|</text>
|
||||||
@Html.ActionLink(T("Send challenge E-mail").ToString(), "SendChallengeEmail", new { entry.User.Id })
|
@Html.ActionLink(T("Send challenge E-mail").ToString(), "SendChallengeEmail", new { entry.User.Id }, new { itemprop = "UnsafeUrl" })
|
||||||
}
|
}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user