Add Activity log Service and model

This commit is contained in:
2026-08-01 15:41:26 +05:30
parent 2d7d146ec3
commit e98e1422a0
6 changed files with 350 additions and 43 deletions

View File

@@ -37,6 +37,7 @@ def register_blueprints(app):
from app.routes.file_format import file_format_bp
# new
from app.routes.activity_routes import activity_bp
from app.routes.engineering import engi_bp
app.register_blueprint(auth_bp)
@@ -49,8 +50,9 @@ def register_blueprints(app):
app.register_blueprint(file_format_bp)
# new
app.register_blueprint(activity_bp)
app.register_blueprint(engi_bp)
def register_error_handlers(app):