1
0
Fork 0
mirror of https://github.com/fastogt/fastocloud_admin.git synced 2025-03-09 23:38:52 +00:00
This commit is contained in:
topilski 2020-02-14 23:01:35 -05:00
parent a33e7fed58
commit 3f93561dd7
2 changed files with 2 additions and 2 deletions

View file

@ -96,7 +96,7 @@ from app.provider.view import ProviderView
from app.stream.view import StreamView from app.stream.view import StreamView
from app.service.view import ServiceView from app.service.view import ServiceView
from app.subscriber.view import SubscriberView from app.subscriber.view import SubscriberView
from app.autofill.view import M3uParseStreamsView from app.autofill.view import M3uParseStreamsView, M3uParseVodsView
from app.epg.view import EpgView from app.epg.view import EpgView
HomeView.register(app) HomeView.register(app)
@ -105,4 +105,5 @@ StreamView.register(app)
ServiceView.register(app) ServiceView.register(app)
SubscriberView.register(app) SubscriberView.register(app)
M3uParseStreamsView.register(app) M3uParseStreamsView.register(app)
M3uParseVodsView.register(app)
EpgView.register(app) EpgView.register(app)

View file

@ -85,7 +85,6 @@ class M3uParseVodsView(FlaskView):
m3u = M3uParseVods.objects() m3u = M3uParseVods.objects()
return render_template('autofill/show_vods.html', m3u=m3u) return render_template('autofill/show_vods.html', m3u=m3u)
@login_required
def show_anonim(self): def show_anonim(self):
m3u = M3uParseVods.objects() m3u = M3uParseVods.objects()
return render_template('autofill/show_vods_anonim.html', m3u=m3u) return render_template('autofill/show_vods_anonim.html', m3u=m3u)