Feature #26: User Flags
Flags can be associated with Users. Includes minor updates to Job Queues and improved visibility of user information.
This commit is contained in:
@@ -114,6 +114,16 @@ namespace Disco.Web.Areas.Config
|
||||
"Config/JobQueue/{id}",
|
||||
new { controller = "JobQueue", action = "Index", id = UrlParameter.Optional }
|
||||
);
|
||||
context.MapRoute(
|
||||
"Config_UserFlag_Create",
|
||||
"Config/UserFlag/Create",
|
||||
new { controller = "UserFlag", action = "Create", id = UrlParameter.Optional }
|
||||
);
|
||||
context.MapRoute(
|
||||
"Config_UserFlag",
|
||||
"Config/UserFlag/{id}",
|
||||
new { controller = "UserFlag", action = "Index", id = UrlParameter.Optional }
|
||||
);
|
||||
|
||||
context.MapRoute(
|
||||
"Config_Plugins",
|
||||
|
||||
Reference in New Issue
Block a user