Skip to content

Commit a93c224

Browse files
authored
feat: change session to schedule & schedule to calendar in URL (#4918)
1 parent 9663982 commit a93c224

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/router.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Router.map(function() {
4040
this.route('logout');
4141
this.route('oauth', { path: '/oauth/callback' });
4242
this.route('public', { path: '/e/:event_id' }, function() {
43-
this.route('sessions');
43+
this.route('sessions', { path: '/schedule' });
4444
this.route('session', function() {
4545
this.route('view', { path: '/:session_id' });
4646
});
@@ -54,7 +54,7 @@ Router.map(function() {
5454
this.route('edit-speaker', { path: '/speaker/:speaker_id/edit' });
5555
this.route('edit-session', { path: '/session/:session_id/edit' });
5656
});
57-
this.route('schedule');
57+
this.route('schedule', { path: '/calendar' });
5858
this.route('coc');
5959
this.route('speakers');
6060
this.route('role-invites');

app/templates/components/public/side-menu.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
{{/if}}
3232
{{#if this.showSessions}}
3333
<LinkTo @route="public.sessions" class="item">
34-
{{t 'Sessions'}}
34+
{{t 'Schedule'}}
3535
</LinkTo>
3636
{{/if}}
3737
{{#if this.isSchedulePublished}}
3838
<LinkTo @route="public.schedule" class="item">
39-
{{t 'Schedule'}}
39+
{{t 'Calendar'}}
4040
</LinkTo>
4141
{{/if}}
4242
{{#if this.shouldShowCallforSpeakers }}

0 commit comments

Comments
 (0)