Sistema de Administradores y Moderadores #47
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
¿Qué se implementa?
.env
será admin. *Nota sobre esto al final.GET
), agregar mods (POST
) o eliminar mods (DELETE
) a través del endpoint/auth/mod
(PAN-162).require_mod_auth
) o admin (require_admin_auth
) para ciertas rutas (e.g./sync
requiere permisos de admin PAN-161).GET /auth/check/admin
) y mod (GET /auth/check/mod
).¿Qué falta?
GuestKey
para entregar ciertos permisos limitados a este tipo de usuario. Aunque igual pueden haber otras formas de proceder con la implementación así que prefiero dejar esto aquí para discutirlo.TODO
).Detalle de la implementación
AccessLevel
en la base de datos que relacionauser_rut
s a un atributois_mod
. Actualmente todos los registros de dicha tabla deberían teneris_mod=True
y ser removidos en caso contrario, pero a futuro podría agregarseis_admin
si se quiere tener la opción de múltiples admins (*como se comenta abajo en la nota).UserKey
,ModKey(UserKey)
yAdminKey(ModKey)
para generar permisos de autorización. Notar que por herencia todo admin es mod, y todo mod es usuario.Notas sobre la implementación