diff --git a/frontend/public/i18n/EN.txt b/frontend/public/i18n/EN.txt index e79a8a1..6afc395 100644 --- a/frontend/public/i18n/EN.txt +++ b/frontend/public/i18n/EN.txt @@ -20,6 +20,7 @@ app.login=Login app.notifications=Notifications app.settings=Settings app.messages=Messages +app.meetings=Meetings app.forum=Forum app.schedules=Schedules app.inscription.requests=Inscription Requests diff --git a/frontend/public/i18n/FR.txt b/frontend/public/i18n/FR.txt index c5f3ebf..905074f 100644 --- a/frontend/public/i18n/FR.txt +++ b/frontend/public/i18n/FR.txt @@ -20,6 +20,7 @@ app.login=Se connecter app.notifications=Notifications app.settings=Options app.messages=Messages +app.meetings=Rendez-vous app.forum=Forum app.schedules=Horaires app.inscription.requests=Demandes d'Inscription diff --git a/frontend/src/Apps/Meetings.vue b/frontend/src/Apps/Meetings.vue new file mode 100644 index 0000000..496516c --- /dev/null +++ b/frontend/src/Apps/Meetings.vue @@ -0,0 +1,11 @@ + + + + + + diff --git a/frontend/src/rest/apps.js b/frontend/src/rest/apps.js index 99cbc10..521093c 100644 --- a/frontend/src/rest/apps.js +++ b/frontend/src/rest/apps.js @@ -9,6 +9,7 @@ import Profil from "@/Apps/Profil.vue" import Courses from "@/Apps/ManageCourses.vue" import Users from "@/Apps/UsersList.vue" import Students from "@/Apps/StudentsList.vue" +import Meetings from "@/Apps/Meetings.vue" const apps = { '/login': LoginPage, @@ -17,10 +18,12 @@ const apps = { '/manage-courses' : Courses, '/users-list' : Users, '/students-list' : Students, + '/meetings' : Meetings, } const appsList = { 'Msg': { path: '#/msg', icon: 'fa-comment', text: i18n("app.messages") }, + 'Meetings': { path: '#/meetings', icon: 'fa-handshake', text: i18n("app.meetings") }, 'Notification': { path: '#/notifs', icon: 'fa-bell', text: i18n("app.notifications") }, 'Forum': { path: '#/forum', icon: 'fa-envelope', text: i18n("app.forum") }, 'Schedule': { path: '#/schedule', icon: 'fa-calendar-days', text: i18n("app.schedules") },