Skip to content

Commit

Permalink
add Privacy Policy URL, upgrade Python
Browse files Browse the repository at this point in the history
  • Loading branch information
bommels committed Oct 17, 2022
1 parent 0e611f5 commit 2dd46d7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.6-slim
FROM python:3.8-slim

RUN apt-get update && apt-get install -y --no-install-recommends swig build-essential libssl-dev ffmpeg

Expand Down
6 changes: 6 additions & 0 deletions bot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ async def join(self, ctx):
logger.info('Received !join')
await ctx.send('Join the Steam Ladder server: https://discord.gg/C4pdK7Z')

@commands.command()
async def privacy(self, ctx):
"""Get the Privacy Policy URL"""
logger.info('Received !privacy')
await ctx.send('View our Privacy Policy: <https://steamladder.com/support/privacy>')


@bot.event
async def on_ready():
Expand Down

0 comments on commit 2dd46d7

Please sign in to comment.