Skip to content

Commit

Permalink
feat: change params for demo
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Jun 19, 2023
1 parent 9beec1e commit fb9409b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 32
compileSdkVersion 33

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion app/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
2 changes: 1 addition & 1 deletion app/lib/common/constants.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:url_launcher/url_launcher.dart';

Uri anniUrl([String slug = '']) => Uri.http('localhost:8000', 'api/v1/$slug');
Uri anniUrl([String slug = '']) => Uri.http('vm-slosarek01.dhclab.i.hpi.de:8001', 'api/v1/$slug');
Uri labServerUrl([String slug = '']) =>
Uri.http('localhost:3001', 'api/v1/$slug');
Uri keycloakUrl([String slug = '']) =>
Expand Down
8 changes: 4 additions & 4 deletions app/lib/login/models/lab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ class AppShareLab extends Lab {
}

final labs = [
AppShareLab(
KeycloakLab(
name: 'Health-X dataLOFT',
// Will be somehting like healthxdw://dwa.health-x.org/request?provider=
// Charité&fileName=Laborbefund.pdf
appLink: 'shareddocuments://',
authUrl: keycloakUrl('realms/pharme/protocol/openid-connect/auth'),
tokenUrl: keycloakUrl('realms/pharme/protocol/openid-connect/token'),
starAllelesUrl: labServerUrl('star-alleles'),
),
KeycloakLab(
name: 'Mount Sinai Health System',
Expand Down

0 comments on commit fb9409b

Please sign in to comment.