From a40ea0c2781ec940b33ff465b5755af6adf61bd1 Mon Sep 17 00:00:00 2001 From: a-ill Date: Sun, 27 Aug 2023 20:00:29 +0300 Subject: [PATCH] Update AdminController.jl --- Server/app/resources/admin/AdminController.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Server/app/resources/admin/AdminController.jl b/Server/app/resources/admin/AdminController.jl index 253b488..b9da20b 100644 --- a/Server/app/resources/admin/AdminController.jl +++ b/Server/app/resources/admin/AdminController.jl @@ -89,8 +89,6 @@ end current_user() = findone(Users.User, id = get_authentication()) function admin_panel() - @info has_permission(current_user(), "verification") - @info current_user() if has_permission(current_user(), "verification") locale = get_locale() html(:admin,:admin_panel, layout = dict_layouts[:admin_panel], context = @__MODULE__, @@ -124,7 +122,7 @@ function get_unverified_users() end function add_verified_groups() - if has_permission(current_user(), "admin") + if has_permission(current_user(), "verification") groups_create_requests_verified = select_from_table("groups_requests" => ["*"], where_data = ["group_id" => nothing, "status" => 1]) if size(groups_create_requests_verified,1)!=0 data = Dict(zip(names(groups_create_requests_verified),groups_create_requests_verified[end,:]))