Answer the question
In order to leave comments, you need to log in
Which implementation of user management to choose?
Please tell me what is better to choose for user management. Yii2 RBAC or create table for example
CREATE TABLE user_group (
id integer NOT NULL,
group_name character varying(255) NOT NULL,
is_admin boolean DEFAULT false NOT NULL,
allow_moderate boolean DEFAULT false NOT NULL,
allow_post boolean DEFAULT false NOT NULL
);
if (allow_moderate === true) ...
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question