Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
keshav-multi
c0aaeea45f update caddy, postgres, minio in docker compose 2024-01-26 22:45:51 +01:00
rjshrjndrn
b58b446ca6 chore(frontend): Update the image version in env
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
2024-01-26 21:43:03 +01:00
Taha Yassine Kraiem
65f843805c refactor(chalice): changed permissions 2024-01-26 19:05:38 +01:00
Amirouche
90059f59ca fix(api): even in ee, get_boy_project_key must return the project 2024-01-26 18:11:35 +01:00
4 changed files with 6 additions and 6 deletions

View file

@ -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):

View file

@ -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"]

View file

@ -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'

View file

@ -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: