mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-11 16:07:36 +01:00
af9565bc06
Changes the Auth System to use the new login server to fetch the users/groups instead of the deprecated forumuserapi. Removes the ForumUserAPI and moves the admin authorization processes to a auth subsystem --------- Co-authored-by: Werner <Arrow768@users.noreply.github.com>
10 lines
206 B
Plaintext
10 lines
206 B
Plaintext
/datum/admin_rank
|
|
var/rank_name
|
|
var/group_id
|
|
var/rights
|
|
|
|
/datum/admin_rank/New(raw_data)
|
|
group_id = raw_data["role_id"]
|
|
rank_name = raw_data["name"]
|
|
rights = SSauth.auths_to_rights(raw_data["auths"])
|