Compare commits
4 commits
main
...
Keshav-Aga
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c0aaeea45f | ||
|
|
b58b446ca6 | ||
|
|
65f843805c | ||
|
|
90059f59ca |
4 changed files with 6 additions and 6 deletions
|
|
@ -251,7 +251,7 @@ def get_by_project_key(project_key):
|
|||
{"project_key": project_key})
|
||||
cur.execute(query=query)
|
||||
row = cur.fetchone()
|
||||
return row["project_id"] if row else None
|
||||
return helper.dict_to_camel_case(row)
|
||||
|
||||
|
||||
def get_project_key(project_id):
|
||||
|
|
|
|||
|
|
@ -2,11 +2,11 @@ from fastapi import Body, Depends
|
|||
|
||||
from chalicelib.core.usability_testing import service
|
||||
from chalicelib.core.usability_testing.schema import UTTestCreate, UTTestUpdate, UTTestSearch
|
||||
from or_dependencies import OR_context, OR_role
|
||||
from or_dependencies import OR_context
|
||||
from routers.base import get_routers
|
||||
from schemas import schemas
|
||||
|
||||
public_app, app, app_apikey = get_routers(extra_dependencies=[OR_role("owner", "admin")])
|
||||
public_app, app, app_apikey = get_routers()
|
||||
tags = ["usability-tests"]
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -22,5 +22,5 @@ MINIO_ACCESS_KEY = ''
|
|||
MINIO_SECRET_KEY = ''
|
||||
|
||||
# APP and TRACKER VERSIONS
|
||||
VERSION = 1.16.0
|
||||
VERSION = 1.17.0
|
||||
TRACKER_VERSION = '11.0.1'
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ services:
|
|||
image: bitnami/postgresql:${POSTGRES_VERSION}
|
||||
container_name: postgres
|
||||
volumes:
|
||||
- pgdata:/var/lib/postgresql/data
|
||||
- pgdata:/bitnami/postgresql
|
||||
networks:
|
||||
- openreplay-net
|
||||
environment:
|
||||
|
|
@ -25,7 +25,7 @@ services:
|
|||
image: bitnami/minio:${MINIO_VERSION}
|
||||
container_name: minio
|
||||
volumes:
|
||||
- miniodata:/bitnami/minio/data
|
||||
- miniodata:/data
|
||||
networks:
|
||||
- openreplay-net
|
||||
ports:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue