* add auth that verifies identity is marked online * few changes for testing * handle identity with requirements * remove unnecessary logging from auth handler * change to UserRequirements * fixes to checks * fixes to UserRequirementHandler Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
9 lines
177 B
C#
9 lines
177 B
C#
namespace MareSynchronosServer.RequirementHandlers;
|
|
|
|
public enum UserRequirements
|
|
{
|
|
Identified = 0b00000001,
|
|
Moderator = 0b00000010,
|
|
Administrator = 0b00000100
|
|
}
|