Explorar el Código

rename "videoconf" as "videoconference" in url

Guénaël Muller hace 6 años
padre
commit
ef6a57563e

+ 1 - 1
tracim/tracim/controllers/workspace.py Ver fichero

@@ -29,7 +29,7 @@ class UserWorkspaceRestController(TIMRestController):
29 29
     allow_only = not_anonymous()
30 30
 
31 31
     folders = UserWorkspaceFolderRestController()
32
-    videoconf = JitsiMeetController()
32
+    videoconference = JitsiMeetController()
33 33
 
34 34
     @property
35 35
     def _base_url(self):

+ 1 - 1
tracim/tracim/templates/videoconf/toolbar.mak Ver fichero

@@ -9,7 +9,7 @@
9 9
         <div class="btn-group btn-group-vertical">
10 10
            ## INFO - G.M - 09-01-2018 - Share a link disabled, because
11 11
            ## link doesn't refresh.
12
-           ## <a title="${_('Invite by sharing a link')}" class="btn btn-default" data-toggle="modal" data-target="#videoconf-invite-modal-dialog" data-remote="${tg.url('/workspaces/{}/videoconf/invite'.format(result.workspace.id))}" >${ICON.FA('fa-share fa-fw t-less-visible')} ${_('Invite')}</a>
12
+           ## <a title="${_('Invite by sharing a link')}" class="btn btn-default" data-toggle="modal" data-target="#videoconf-invite-modal-dialog" data-remote="${tg.url('/workspaces/{}/videoconference/invite'.format(result.workspace.id))}" >${ICON.FA('fa-share fa-fw t-less-visible')} ${_('Invite')}</a>
13 13
         </div>
14 14
         <p></p>
15 15
     </div> <!-- # End of side bar right -->

+ 1 - 1
tracim/tracim/templates/workspace/toolbar.mak Ver fichero

@@ -34,6 +34,6 @@
34 34
 
35 35
 <%def name="JITSI_MEET_BUTTON(current_user, workspace)">
36 36
     <div class="btn-group btn-group-vertical">
37
-        <a title="${_('Video conference')}" class="btn btn-default" href="${tg.url('/workspaces/{}/videoconf'.format(result.workspace.id))}">${ICON.FA('fa-video-camera fa-fw t-less-visible')} ${_('Video Conference')}</a>
37
+        <a title="${_('Video conference')}" class="btn btn-default" href="${tg.url('/workspaces/{}/videoconference'.format(result.workspace.id))}">${ICON.FA('fa-video-camera fa-fw t-less-visible')} ${_('Video Conference')}</a>
38 38
     </div>
39 39
 </%def>