aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/invite.py
blob: 07ddc8306340122d035a8d6e35869642f1b21e83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding=utf-8
from flask import redirect

from pysite.base_route import RouteView


__author__ = "Gareth Coles"


class InviteView(RouteView):
    path = "/invite"
    name = "invite"

    def get(self):
        return redirect("http://invite.pythondiscord.com/")