Application Android et IOS pour l'amicale des élèves https://play.google.com/store/apps/details?id=fr.amicaleinsat.application
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Urls.tsx 3.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright (c) 2019 - 2020 Arnaud Vergnet.
  3. *
  4. * This file is part of Campus INSAT.
  5. *
  6. * Campus INSAT is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Campus INSAT is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Campus INSAT. If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. const STUDENT_SERVER = 'https://etud.insa-toulouse.fr/';
  20. const AMICALE_SERVER = 'https://www.amicale-insat.fr/';
  21. const GIT_SERVER =
  22. 'https://git.etud.insa-toulouse.fr/vergnet/application-amicale/';
  23. const AMICALE_ENDPOINT = AMICALE_SERVER + 'api/';
  24. const APP_ENDPOINT = STUDENT_SERVER + '~amicale_app/v2/';
  25. const PROXIMO_ENDPOINT = STUDENT_SERVER + '~proximo/data/stock-v2.json';
  26. const APP_IMAGES_ENDPOINT = STUDENT_SERVER + '~amicale_app/images/';
  27. export default {
  28. amicale: {
  29. api: APP_ENDPOINT,
  30. resetPassword: AMICALE_SERVER + 'password/reset',
  31. events: AMICALE_ENDPOINT + 'event/list',
  32. },
  33. app: {
  34. api: APP_ENDPOINT,
  35. dashboard: APP_ENDPOINT + 'dashboard/dashboard_data.json',
  36. menu: APP_ENDPOINT + 'menu/menu_data.json',
  37. },
  38. proximo: PROXIMO_ENDPOINT,
  39. images: {
  40. proxiwash: APP_IMAGES_ENDPOINT + 'Proxiwash.png',
  41. washer: APP_IMAGES_ENDPOINT + 'ProxiwashLaveLinge.png',
  42. dryer: APP_IMAGES_ENDPOINT + 'ProxiwashSecheLinge.png',
  43. proximo: APP_IMAGES_ENDPOINT + 'Proximo.png',
  44. clubs: APP_IMAGES_ENDPOINT + 'Clubs.png',
  45. profile: APP_IMAGES_ENDPOINT + 'ProfilAmicaliste.png',
  46. equipment: APP_IMAGES_ENDPOINT + 'Materiel.png',
  47. vote: APP_IMAGES_ENDPOINT + 'Vote.png',
  48. amicale: APP_IMAGES_ENDPOINT + 'WebsiteAmicale.png',
  49. wiketud: APP_IMAGES_ENDPOINT + 'Wiketud.png',
  50. elusEtudiants: APP_IMAGES_ENDPOINT + 'EEC.png',
  51. tutorInsa: APP_IMAGES_ENDPOINT + 'TutorINSA.png',
  52. bib: APP_IMAGES_ENDPOINT + 'Bib.png',
  53. menu: APP_IMAGES_ENDPOINT + 'RU.png',
  54. availableRooms: APP_IMAGES_ENDPOINT + 'Salles.png',
  55. bluemind: APP_IMAGES_ENDPOINT + 'Bluemind.png',
  56. ent: APP_IMAGES_ENDPOINT + 'ENT.png',
  57. insaAccount: APP_IMAGES_ENDPOINT + 'Account.png',
  58. },
  59. websites: {
  60. amicale: AMICALE_SERVER,
  61. availableRooms: 'http://planex.insa-toulouse.fr/salles.php',
  62. bib: 'https://bibbox.insa-toulouse.fr/',
  63. bluemind: 'https://etud-mel.insa-toulouse.fr/webmail/',
  64. elusEtudiants: STUDENT_SERVER + '~eeinsat/',
  65. ent: 'https://ent.insa-toulouse.fr/',
  66. insaAccount: 'https://moncompte.insa-toulouse.fr/',
  67. tutorInsa: STUDENT_SERVER + '~tutorinsa/',
  68. wiketud: 'https://wiki.etud.insa-toulouse.fr/',
  69. },
  70. about: {
  71. appstore: 'https://apps.apple.com/us/app/campus-amicale-insat/id1477722148',
  72. playstore:
  73. 'https://play.google.com/store/apps/details?id=fr.amicaleinsat.application',
  74. react: 'https://facebook.github.io/react-native/',
  75. git: GIT_SERVER + 'src/branch/master/README.md',
  76. changelog: GIT_SERVER + 'src/branch/master/Changelog.md',
  77. license: GIT_SERVER + 'src/branch/master/LICENSE',
  78. },
  79. feedback: {
  80. git: GIT_SERVER,
  81. trello: 'https://trello.com/b/RMej49Uq/application-campus-insa',
  82. facebook: 'https://www.facebook.com/campus.insat',
  83. mail: `mailto:app@amicale-insat.fr?subject=[FEEDBACK] Application CAMPUS
  84. &body=Coucou Arnaud j'ai du feedback\n\n\n\nBien cordialement.`,
  85. discord: 'https://discord.gg/W8MeTec',
  86. },
  87. };