Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
maubot-rt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
isgphys
maubot-rt
Commits
0120db14
Commit
0120db14
authored
5 years ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Add subcommand queue
parent
8c3b8db4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rt.py
+10
-0
10 additions, 0 deletions
rt.py
with
10 additions
and
0 deletions
rt.py
+
10
−
0
View file @
0120db14
...
@@ -191,6 +191,16 @@ class RT(Plugin):
...
@@ -191,6 +191,16 @@ class RT(Plugin):
await
self
.
_edit
(
number
,
{
'
Status
'
:
'
deleted
'
})
await
self
.
_edit
(
number
,
{
'
Status
'
:
'
deleted
'
})
await
evt
.
respond
(
f
'
{
self
.
markdown_link
(
number
)
}
deleted 🤬
'
)
await
evt
.
respond
(
f
'
{
self
.
markdown_link
(
number
)
}
deleted 🤬
'
)
@rt.subcommand
(
'
queue
'
,
aliases
=
(
'
q
'
,
'
que
'
),
help
=
'
Put the ticket in queue.
'
)
@command.argument
(
'
number
'
,
'
ticket number
'
,
parser
=
str
)
@command.argument
(
'
queue
'
,
'
queue
'
,
parser
=
str
)
async
def
queue
(
self
,
evt
:
MessageEvent
,
number
:
str
,
queue
:
str
)
->
None
:
if
not
self
.
can_manage
(
evt
)
or
not
self
.
valid_number
(
number
):
return
await
evt
.
mark_read
()
await
self
.
_edit
(
number
,
{
'
Status
'
:
'
open
'
,
'
Queue
'
:
queue
})
await
evt
.
respond
(
f
'
{
self
.
markdown_link
(
number
)
}
queued in **
{
queue
}
** 😐️
'
)
@rt.subcommand
(
'
autoresolve
'
,
help
=
'
Ask the bot to automatically answer and resolve tickets.
'
)
@rt.subcommand
(
'
autoresolve
'
,
help
=
'
Ask the bot to automatically answer and resolve tickets.
'
)
async
def
autoresolve
(
self
,
evt
:
MessageEvent
)
->
None
:
async
def
autoresolve
(
self
,
evt
:
MessageEvent
)
->
None
:
if
not
self
.
can_manage
(
evt
):
if
not
self
.
can_manage
(
evt
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment