Skip to content

Commit 2367152

Browse files
committed
Fixing all names
1 parent 1098aa2 commit 2367152

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend/tuber/api/uber.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def sync_attendees(event):
262262
counter += 1
263263
if attendee in badgelookup:
264264
badge = badgelookup[attendee]
265-
if uber_model['full_name'] != badge.public_name:
265+
if uber_model['full_name'] != badge.public_name or uber_model['legal_name'] != badge.legal_name or uber_model['first_name'] != badge.first_name or uber_model['last_name'] != badge.last_name:
266266
print(f"Updating public name from {badge.public_name} to {uber_model['full_name']}")
267267
badge.first_name = uber_model['first_name']
268268
badge.last_name = uber_model['last_name']

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- postgres
2727
- redis
2828
environment:
29-
DATABASE_URL: postgresql://tuber:tuber@postgres/tuber
29+
DATABASE_URL: postgresql+psycopg://tuber:tuber@postgres/tuber
3030
REDIS_URL: redis://redis:6379/0
3131
VERBOSE: "true"
3232
FLASK_DEBUG: 1

frontend/src/assets/styles/sass/_responsive.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
&.layout-static {
2626
.layout-main-container {
27-
margin-left: 300px;
27+
margin-left: 180px;
2828
}
2929

3030
&.layout-static-sidebar-inactive {

0 commit comments

Comments
 (0)