# By: Riasat Ullah
# This file contains custom redirect functions. This will be needed for redirecting to mobile app deep links.

from django.shortcuts import HttpResponsePermanentRedirect


class MobileAppRedirect(HttpResponsePermanentRedirect):
    allowed_schemes = ['taskcallapp', 'exp']
