Skip to content

Commit 02a854b

Browse files
committed
Merge branch 'feature/admin-minor-trace-chemistry' of https://github.com/DataIntegrationGroup/OcotilloAPI into feature/admin-minor-trace-chemistry
2 parents fc057e9 + ba8403a commit 02a854b

54 files changed

Lines changed: 56 additions & 60 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

admin/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
1919
Provides web-based administrative interface for managing database records.
2020
"""
21+
2122
from admin.config import create_admin
2223

2324
__all__ = ["create_admin"]

admin/auth.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
This module provides a Starlette Admin AuthProvider that integrates with the
2020
existing Authentik-based authentication system used by the NMSampleLocations API.
2121
"""
22+
2223
import os
2324
import secrets
2425
from typing import Optional

admin/auth_routes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"""
1717
Admin authentication callback routes.
1818
"""
19+
1920
import os
2021

2122
import httpx

admin/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
1919
This module creates and configures the admin interface for NMSampleLocations.
2020
"""
21+
2122
from starlette_admin.contrib.sqla import Admin
2223

2324
from admin.auth import NMSampleLocationsAuthProvider

admin/fields.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
1919
Provides field handlers for complex data types like PostGIS geometry.
2020
"""
21+
2122
from typing import Any
2223

2324
from geoalchemy2 import WKTElement

admin/views/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
1919
Provides MS Access-like interface for CRUD operations on database models.
2020
"""
21+
2122
from admin.views.location import LocationAdmin
2223
from admin.views.thing import ThingAdmin
2324
from admin.views.observation import ObservationAdmin

admin/views/aquifer_system.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"""
1717
AquiferSystemAdmin view for NMSampleLocations.
1818
"""
19+
1920
from admin.fields import WKTField
2021
from admin.views.base import OcotilloModelView
2122

admin/views/aquifer_type.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"""
1717
AquiferTypeAdmin view for NMSampleLocations.
1818
"""
19+
1920
from admin.views.base import OcotilloModelView
2021

2122

admin/views/asset.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
1919
Provides MS Access-like interface for CRUD operations on Asset model.
2020
"""
21+
2122
from admin.views.base import OcotilloModelView
2223

2324

admin/views/chemistry_sampleinfo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"""
1717
ChemistrySampleInfoAdmin view for legacy Chemistry_SampleInfo.
1818
"""
19+
1920
from admin.views.base import OcotilloModelView
2021

2122

0 commit comments

Comments
 (0)