Skip to content

Commit

Permalink
Merge pull request #79 from virtualidentityag/fix-core-settings
Browse files Browse the repository at this point in the history
fix(config.ts): set correct default value for core
  • Loading branch information
koepferd authored Jul 21, 2022
2 parents b5b9003 + 968d960 commit f64c65f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dockerImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
name: buildfiles
- name: Prepare Docker variables
run: |
echo "DOCKER_REGISTRY=$(echo "docker.pkg.github.com/${{ github.repository }}" | awk '{print tolower($0)}')" >> $GITHUB_ENV
echo "DOCKER_IMAGE=$(echo "${{ github.repository }}" | awk -F / '{print tolower($2)}')" >> $GITHUB_ENV
echo "DOCKER_REGISTRY=$(echo "docker.pkg.github.com/${{ github.repository }}" | awk '{print tolower($0)}')" >> $GITHUB_ENV
echo "DOCKER_IMAGE=$(echo "${{ github.repository }}" | awk -F / '{print tolower($2)}')" >> $GITHUB_ENV
shell: bash
- name: Push to GitHub Packages
uses: docker/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/resources/scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const APP_PATH = 'app';
export const config = {
useTenantService: false,
enableTenantTheming: false, // Feature flag to enable tenant theming based on subdomains
enableWalkthrough: true, // Feature flag to enable walkthrough (false by default here & true in the theme repo)
enableWalkthrough: false, // Feature flag to enable walkthrough (false by default here & true in the theme repo)
enableVideoAppointments: true, // Feature flag to enable Video-Termine page

endpoints: {
Expand Down

0 comments on commit f64c65f

Please sign in to comment.