61 lines
2.4 KiB
C#
61 lines
2.4 KiB
C#
namespace Netina.Domain.Models.Claims;
|
|
|
|
public static class ApplicationPermission
|
|
{
|
|
public static string ManageFaq = nameof(ManageFaq);
|
|
|
|
public const string ViewSettings = nameof(ViewSettings);
|
|
public const string ManageSettings = nameof(ManageSettings);
|
|
|
|
public const string ManageScraper = nameof(ManageScraper);
|
|
|
|
public const string ViewRoles = nameof(ViewRoles);
|
|
public const string ManageRoles = nameof(ManageRoles);
|
|
|
|
public const string ViewPayments = nameof(ViewPayments);
|
|
|
|
public const string ViewNewsletterMembers = nameof(ViewNewsletterMembers);
|
|
|
|
public const string ViewPages = nameof(ViewPages);
|
|
public const string ManagePages = nameof(ManagePages);
|
|
|
|
public const string ManageBlogs = nameof(ManageBlogs);
|
|
public const string ViewBlogs = nameof(ViewBlogs);
|
|
|
|
public const string ManageBrands = nameof(ManageBrands);
|
|
public const string ViewBrands = nameof(ViewBrands);
|
|
|
|
public const string ManageCategories = nameof(ManageCategories);
|
|
public const string ViewCategories = nameof(ViewCategories);
|
|
|
|
public const string ManageDiscounts = nameof(ManageDiscounts);
|
|
public const string ViewDiscounts = nameof(ViewDiscounts);
|
|
|
|
public const string ManageOrders = nameof(ManageOrders);
|
|
public const string ViewAllOrders = nameof(ViewAllOrders);
|
|
public const string ViewMineOrders = nameof(ViewMineOrders);
|
|
public const string CreateOrder = nameof(CreateOrder);
|
|
|
|
public const string ManageProducts = nameof(ManageProducts);
|
|
public const string ViewProducts = nameof(ViewProducts);
|
|
|
|
public const string ManageReview = nameof(ManageReview);
|
|
public const string AddReview = nameof(AddReview);
|
|
public const string ConfirmReview = nameof(ConfirmReview);
|
|
public const string ViewAllReviews = nameof(ViewAllReviews);
|
|
public const string ViewMineReviews = nameof(ViewMineReviews);
|
|
|
|
public const string ManageWarehouses = nameof(ManageWarehouses);
|
|
public const string ViewWarehouses = nameof(ViewWarehouses);
|
|
|
|
public const string ManageShipping = nameof(ManageShipping);
|
|
public const string ViewShipping = nameof(ViewShipping);
|
|
|
|
public const string ManageUsers = nameof(ManageUsers);
|
|
public const string ViewUsers = nameof(ViewUsers);
|
|
|
|
public const string ManageFiles = nameof(ManageFiles);
|
|
public const string ViewFiles = nameof(ViewFiles);
|
|
|
|
public const string ManageDashboard = nameof(ManageDashboard);
|
|
} |