Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-10-26 | Fix errors caught by mypy. | Frederick Muriuki Muriithi | |
2022-01-05 | Fix pylint errors | BonfaceKilz | |
2021-11-13 | Do not shadow global symbol uuid. | Arun Isaac | |
* gn3/authentication.py (get_groups_by_user_uid): Rename local symbol uuid to group_uuid. (get_user_info_by_key): Rename local symbol uuid to user_uuid. | |||
2021-11-13 | Reformat condition on a single line. | Arun Isaac | |
* gn3/authentication.py (get_user_info_by_key): Reformat so that condition is on a single line. | |||
2021-11-13 | Do not use dangerous default argument []. | Arun Isaac | |
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. | |||
2021-11-09 | Add functions for updating groups | BonfaceKilz | |
2021-11-01 | Fix mypy issues | BonfaceKilz | |
2021-11-01 | Fix pylint issues in gn3.authentication | BonfaceKilz | |
2021-11-01 | Add auth module | BonfaceKilz | |