Fix Profile & SignIn urls.

This commit is contained in:
Thomas Andres Gomez 2022-10-25 17:59:04 +02:00
parent 4c4d477fe3
commit 9200855795

View file

@ -10,7 +10,7 @@ interface IBibLibClient {
const val BASE_URL = "https://bib.bibulle.fr/api/"
const val THUMBNAIL_URL = "${BASE_URL}book/thumbnail"
const val COVER_URL = "${BASE_URL}book/cover"
const val REGISTER_URL = "${BASE_URL}signup"
const val EDIT_PROFILE = "${BASE_URL}profile"
const val REGISTER_URL = "https://bib.bibulle.fr/signup"
const val EDIT_PROFILE = "https://bib.bibulle.fr/profile"
}
}