Skip to content

Commit

Permalink
feat(next/web): allow customer service manage quick reply
Browse files Browse the repository at this point in the history
  • Loading branch information
sdjdd committed Apr 7, 2024
1 parent 033acbf commit a181b2b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions next/web/src/App/Admin/Settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ const SettingRoutes = () => (
<Route path="/users">
<Route path="new" element={<NewUser />} />
</Route>
<Route path="/quick-replies">
<Route index element={<QuickReplyList />} />
<Route path="new" element={<NewQuickReply />} />
<Route path=":id" element={<QuickReplyDetail />} />
</Route>
<Route path="/export-ticket">
<Route path="tasks" element={<ExportTicketTask />} />
</Route>
Expand Down Expand Up @@ -228,6 +233,7 @@ const routeGroups: MenuItem[] = [
{
name: '快捷回复',
path: 'quick-replies',
adminOnly: false,
},
{
name: '视图',
Expand Down

0 comments on commit a181b2b

Please sign in to comment.