{% extends 'notifpy/base.html' %} {% load static %} {% block head %} {% endblock head %} {% block title %}Settings | Notifpy{% endblock%} {% block body %}

Settings

Shortcuts: YouTube or Twitch.

YouTube

Subscribe to a YouTube channel

{% csrf_token %}

Write one entry, either "channel/*" or "user/*", per line.

Edit update schedule

Write space separated update hours for each priority level.

Force update

{%csrf_token%}

Clear old videos

Delete videos older than:

{%csrf_token%}

Endpoint

Delivered at {{operator.youtube.oauth_flow.token.delivery_datetime|date:"Y-m-d H:i:s"}} and expires at {{operator.youtube.oauth_flow.token.expiration_datetime|date:"Y-m-d H:i:s"}}.

Retrieve Token Refresh Token Revoke Token

Current subscriptions

{% if channels %}
{% for channel in channels %} {% endfor %}
{% else %}

You are not subscribed to any channel.

{% endif %}

Twitch

Follow a Twitch user

{% csrf_token %}

Write one user login per line.

Endpoint

Delivered at {{operator.twitch.oauth_flow.token.delivery_datetime|date:"Y-m-d H:i:s"}} and expires at {{operator.twitch.oauth_flow.token.expiration_datetime|date:"Y-m-d H:i:s"}}.

Retrieve Token Refresh Token Revoke Token

Current follows

{% if users %}
{% for user in users %} {% endfor %}
{% else %}

You are not following any user.

{% endif %}
{% endblock body %}