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
56344ac1
Commit
56344ac1
authored
3 years ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Add disown command
parent
caf1a03a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
maubot.yaml
+1
-1
1 addition, 1 deletion
maubot.yaml
rt.py
+15
-0
15 additions, 0 deletions
rt.py
with
16 additions
and
1 deletion
maubot.yaml
+
1
−
1
View file @
56344ac1
...
...
@@ -5,7 +5,7 @@ maubot: 0.1.0
id
:
ch.ethz.phys.rt
# A PEP 440 compliant version string.
version
:
0.3.
2
version
:
0.3.
3
# The SPDX license identifier for the plugin. https://spdx.org/licenses/
# Optional, assumes all rights reserved if omitted.
...
...
This diff is collapsed.
Click to expand it.
rt.py
+
15
−
0
View file @
56344ac1
...
...
@@ -363,6 +363,21 @@ class RT(Plugin):
f
'
took
{
self
.
html_link
(
number
)
}
👍️
'
)
await
evt
.
respond
(
content
)
@rt.subcommand
(
'
disown
'
,
aliases
=
(
'
di
'
,
'
dis
'
),
help
=
'
Disown a ticket.
'
)
@command.argument
(
'
number
'
,
'
ticket number
'
,
parser
=
str
)
async
def
take
(
self
,
evt
:
MessageEvent
,
number
:
str
)
->
None
:
if
not
self
.
can_manage
(
evt
)
or
not
self
.
valid_number
(
number
):
return
await
evt
.
mark_read
()
displayname
=
await
self
.
_displayname
(
evt
.
room_id
,
evt
.
sender
)
await
self
.
_edit
(
number
,
{
'
Owner
'
:
'
Nobody
'
})
content
=
TextMessageEventContent
(
msgtype
=
MessageType
.
NOTICE
,
format
=
Format
.
HTML
,
body
=
f
'
{
displayname
}
disowned rt#
{
number
}
👎️
'
,
formatted_body
=
f
'
<a href=
"
https://matrix.to/#/
{
evt
.
sender
}
"
>
{
evt
.
sender
}
</a>
'
f
'
disowned
{
self
.
html_link
(
number
)
}
👎️
'
)
await
evt
.
respond
(
content
)
@rt.subcommand
(
'
give
'
,
aliases
=
(
'
g
'
,
'
gi
'
,
'
assign
'
),
help
=
'
Give the ticket to somebody.
'
)
@command.argument
(
'
number
'
,
'
ticket number
'
,
parser
=
str
)
@command.argument
(
'
user
'
,
'
matrix user
'
,
parser
=
str
)
...
...
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