aboutsummaryrefslogtreecommitdiff
path: root/gn3/authentication.py
AgeCommit message (Expand)Author
2021-11-13Do not use dangerous default argument []....Default arguments get evaluated only once when the function is defined, and are then shared across all instances of the function. If the argument is then mutated, this can cause hard to find bugs. See https://docs.python.org/3/tutorial/controlflow.html#default-argument-values * gn3/authentication.py (create_group): Do not use [] as the default argument. Arun Isaac
2021-11-09Add functions for updating groupsBonfaceKilz
2021-11-01Fix mypy issuesBonfaceKilz
2021-11-01Fix pylint issues in gn3.authenticationBonfaceKilz
2021-11-01Add auth moduleBonfaceKilz