Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
322bd21
feat(backend): refactor: adding pdm and updating docker (#317)
allynt May 18, 2023
0bbb7e5
feat(backend): added local fusionauth service (#318)
allynt May 18, 2023
0e8cf74
feat(backend): updated testing configuration
allynt May 18, 2023
9c53d8d
feat(backend): refactored logging in development (#319)
allynt May 18, 2023
d432bbf
feat(backend): refactored settings (#321)
allynt May 18, 2023
0648608
feat(backend): remove UserProfile model (#322)
allynt May 22, 2023
7c96872
feat(backend): added CachedTransientModelManager
allynt May 22, 2023
e6790b4
feat(backend): remove old organization and role fields
allynt May 22, 2023
7216473
feat(backend): added new organization and role models
allynt May 22, 2023
a7f1b32
feat(backend): added organization_name and role_name to users
allynt May 22, 2023
def6eb0
Merge pull request #323 from astrosat/transient-organizations-and-roles
allynt May 23, 2023
75894ea
feat(backend): removed references to allauth and knox (#324)
allynt May 23, 2023
c3d1771
feat(backend): swap drf-yasg for drf-spectacular
allynt May 23, 2023
386133e
Merge pull request #325 from astrosat/drf-spectacular
allynt May 23, 2023
4547060
feat(backend): added auth app
allynt May 23, 2023
a29235b
feat(backend): add status field to user admin
allynt May 23, 2023
4ba62ec
feat(backend): update user serailizers
allynt May 23, 2023
f28d3cd
feat(backend): add code to calculate expired tokens
allynt May 24, 2023
d6b72e7
Merge pull request #326 from astrosat/auth-app
allynt May 24, 2023
2e42274
feat(backend): renamed config view to settings view
allynt May 24, 2023
7c0b036
Merge pull request #327 from astrosat/settings-view
allynt May 24, 2023
ef01a61
chore(backend): renamed settings url
allynt May 24, 2023
83b2ec3
feat(backend): renamed settings variables
allynt May 25, 2023
4b3058f
Refactor data views (#330)
allynt May 26, 2023
05b8ee7
feat(backend): added colors to SiteProfile
allynt May 26, 2023
a9a4836
Merge pull request #331 from astrosat/site-profile-color
allynt May 26, 2023
dcf80b7
fix(backend): Ensure cache tables created
May 29, 2023
f6e0787
feat(backend): added thumbnails to cameramedia
allynt May 29, 2023
b6531b8
Merge pull request #332 from astrosat/camera-thumbnails
allynt May 29, 2023
aa596f8
feat(backend): added is_professional property to users
allynt May 29, 2023
64ac205
Merge pull request #333 from astrosat/user-is-professional
marksmall May 29, 2023
e325d9f
feat(backend): get child organizations along with parents
allynt May 29, 2023
d24dd30
Merge pull request #334 from astrosat/get-child-organizations
marksmall May 29, 2023
92c645a
feat(backend): added tests for transientQuerySet
allynt May 29, 2023
b7a0381
feat(backend): allowed registration to continue if an organization is
allynt May 29, 2023
aedb202
Merge pull request #335 from astrosat/allow-empty-organizations
marksmall May 29, 2023
a9a82fe
feat(backend): added an API endpoint for logout
allynt May 29, 2023
7dd3a38
Merge pull request #336 from astrosat/logout-api
marksmall May 29, 2023
d214290
fix(backend): Make roles titles more user-friendly
May 29, 2023
c76810c
fix(backend): Make organization titles more user-friendly
May 29, 2023
35aa7e9
feat(backend): updated docker-compose and scripts for worker service
allynt May 30, 2023
d2c136a
feat(backend): add better error-handling for caching
allynt May 30, 2023
1b42c58
feat(backend): add a fixture for generating test messages
allynt May 30, 2023
12a0685
Merge pull request #337 from astrosat/test-messages
allynt May 30, 2023
ce38e24
feat(backend): propagate profile updates to gateway
allynt May 31, 2023
bc857c1
Merge pull request #338 from astrosat/update-profile
allynt May 31, 2023
3fa46d3
feat(backend): enable deleting user
allynt May 31, 2023
4e74630
feat(backend): make deleting a dashboard user from FusionAuth optional
allynt May 31, 2023
c73f96b
Merge pull request #339 from astrosat/delete-user-view
allynt May 31, 2023
763b1df
feat(backend): add management command to delete users from FusionAuth
allynt May 31, 2023
f59bd3f
chore(backend): typos in delete user command
allynt May 31, 2023
e14b69b
feat(backend): add an aoi GeoJSON file for the UK
allynt May 31, 2023
d4dd288
feat(backend): renamed aoi files
allynt May 31, 2023
9473298
feat(backend): fixed error in message fixture
allynt May 31, 2023
2acde45
feat(backend): configured profiling (#340)
allynt Jun 1, 2023
02be5ac
feat(backend): disable sending PII to sentry
allynt Jun 1, 2023
07b349b
feat(backend): fix refresh view
allynt Jun 1, 2023
94e8b7e
Merge pull request #342 from astrosat/refresh-view
marksmall Jun 1, 2023
6b56073
feat(backend): do not generate .prof files
allynt Jun 2, 2023
e4597ec
feat(backend): added FusionAuth settings to the config endpoint
allynt Jun 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.git*
docker-compose.yml
***/.pdm.toml
**/*.pyc
**/.vscode
*.code-workspace
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# http://editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
end_of_line = lf
insert_final_newline = true
max_line_length = 120
trim_trailing_whitespace = true

[*.py]
indent_size = 4

[*.md]
max_line_length = 0
trim_trailing_whitespace = false
Loading