-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore
: Set tum artemis server as default (#257)
- Loading branch information
1 parent
3047462
commit a22457d
Showing
9 changed files
with
137 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
.../tum/informatics/www1/artemis/native_app/core/datastore/ServerConfigurationServiceStub.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
package de.tum.informatics.www1.artemis.native_app.core.datastore | ||
|
||
import de.tum.informatics.www1.artemis.native_app.core.datastore.ServerConfigurationService | ||
import kotlinx.coroutines.flow.Flow | ||
import kotlinx.coroutines.flow.flowOf | ||
|
||
class ServerConfigurationServiceStub( | ||
override val serverUrl: Flow<String> = flowOf("https://example.com"), | ||
override val hasUserSelectedInstance: Flow<Boolean> = flowOf(true) | ||
override val serverUrl: Flow<String> = flowOf("https://example.com") | ||
) : ServerConfigurationService { | ||
override suspend fun updateServerUrl(serverUrl: String) = Unit | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.