Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions .github/workflows/sonarqube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- develop
- master
pull_request:


jobs:
Expand Down
4 changes: 4 additions & 0 deletions conditional/blueprints/attendance.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ def get_all_members(user_dict=None):
log = logger.new(request=request, auth_dict=user_dict)
log.info('Retrieve Technical Seminar Attendance List')


members = [10]
print(list(members))

members = ldap_get_current_students()

named_members = [
Expand Down
2 changes: 1 addition & 1 deletion config.env.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
PROFILING = env.get("CONDITIONAL_PROFILING", "false").lower() == "true"

# DB Info
SQLALCHEMY_DATABASE_URI = "postgresql://conditional:fancypantspassword@conditional-postgres:5432/conditional"
SQLALCHEMY_DATABASE_URI = env.get("SQLALCHEMY_DATABASE_URI", "postgresql://conditional:fancypantspassword@conditional-postgres:5432/conditional")
SQLALCHEMY_TRACK_MODIFICATIONS = False

# LDAP config
Expand Down