Skip to content

Commit

Permalink
feature: add oncall functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
kopzly authored and sbgap committed Apr 19, 2024
1 parent 23127e0 commit 2182e2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/NotificationRuleList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,7 @@ export default {
}, 300)
},
save() {
console.log( this.editedItem.useOnCall)
let sTimeStr = null
let eTimeStr = null
if (
Expand Down
7 changes: 7 additions & 0 deletions src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ export function createRouter(basePath): VueRouter {
component: () => import(/* webpackChunkName: 'user' */ './views/OnCall.vue'),
meta: {title: 'oncall', requiresAuth: true}
},
{
path: '/oncall',
name: 'oncall',
component: () =>
import(/* webpackChunkName: 'user' */ './views/OnCall.vue'),
meta: { title: 'oncall', requiresAuth: true }
},
{
path: '/perms',
name: 'perms',
Expand Down

0 comments on commit 2182e2d

Please sign in to comment.