feat: add readme

This commit is contained in:
Azerothwav 2025-01-20 16:30:40 +01:00
parent 02fb881274
commit 37e4d063d7
4 changed files with 7 additions and 3 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# API
Lien de l'api nécessaire : https://gitea.lyc-lecastel.fr/francois.baille/apiDepannTout

View File

@ -13,7 +13,7 @@ import org.json.JSONArray
class Importation {
fun importInterventionsFromServer(context: Context, callback: (List<Intervention>) -> Unit) {
val url = "http://192.168.48.185:8000/interventions"
val url = "http://" + context.getString(R.string.ip_adress) + ":8000/interventions"
val queue = Volley.newRequestQueue(context)
val interventionsList = mutableListOf<Intervention>()
@ -48,7 +48,7 @@ class Importation {
}
fun importClientsFromServer(context: Context, callback: (List<Client>) -> Unit) {
val url = "http://192.168.48.185:8000/clients"
val url = "http://" + context.getString(R.string.ip_adress) + ":8000/clients"
val queue = Volley.newRequestQueue(context)
val clientsList = mutableListOf<Client>()

View File

@ -50,7 +50,7 @@ class createClient : AppCompatActivity() {
finish()
val queue = Volley.newRequestQueue(this)
val url = "http://192.168.48.185:8000/client"
val url = "http://" + getString(R.string.ip_adress) + ":8000/client"
val jsonObjectRequest = object : JsonObjectRequest(
Method.POST, url, null,
{ },

View File

@ -1,3 +1,4 @@
<resources>
<string name="app_name">DepannTout</string>
<string name="ip_adress">192.168.48.185</string>
</resources>