Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
strolly
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dnns01
strolly
Commits
f56c0080
Commit
f56c0080
authored
4 years ago
by
dnns01
Browse files
Options
Downloads
Patches
Plain Diff
Whenever a degree program role is added, the default student role is assigned, too
parent
98a2416f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
roles_cog.py
+14
-0
14 additions, 0 deletions
roles_cog.py
with
14 additions
and
0 deletions
roles_cog.py
+
14
−
0
View file @
f56c0080
...
...
@@ -7,6 +7,16 @@ from discord.ext import commands
import
utils
def
get_student_role
(
guild
):
student_role_id
=
int
(
os
.
getenv
(
"
DISCORD_STUDENTIN_ROLE
"
))
for
role
in
guild
.
roles
:
if
role
.
id
==
student_role_id
:
return
role
return
None
class
RolesCog
(
commands
.
Cog
):
def
__init__
(
self
,
bot
):
self
.
bot
=
bot
...
...
@@ -163,12 +173,14 @@ class RolesCog(commands.Cog):
return
role_name
=
""
student_role
=
None
guild
=
await
self
.
bot
.
fetch_guild
(
payload
.
guild_id
)
member
=
await
guild
.
fetch_member
(
payload
.
user_id
)
roles
=
member
.
roles
if
payload
.
emoji
.
name
in
self
.
assignable_roles
[
0
]:
role_name
=
self
.
assignable_roles
[
0
].
get
(
payload
.
emoji
.
name
)
student_role
=
get_student_role
(
guild
)
else
:
role_name
=
self
.
assignable_roles
[
1
].
get
(
payload
.
emoji
.
name
)
...
...
@@ -182,3 +194,5 @@ class RolesCog(commands.Cog):
for
role
in
guild_roles
:
if
role
.
name
==
role_name
:
await
member
.
add_roles
(
role
)
if
student_role
:
await
member
.
add_roles
(
student_role
)
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