mirror of
https://github.com/fastogt/fastocloud_admin.git
synced 2025-03-09 23:38:52 +00:00
Hot fix
This commit is contained in:
parent
a33e7fed58
commit
3f93561dd7
2 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ from app.provider.view import ProviderView
|
|||
from app.stream.view import StreamView
|
||||
from app.service.view import ServiceView
|
||||
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
|
||||
|
||||
HomeView.register(app)
|
||||
|
@ -105,4 +105,5 @@ StreamView.register(app)
|
|||
ServiceView.register(app)
|
||||
SubscriberView.register(app)
|
||||
M3uParseStreamsView.register(app)
|
||||
M3uParseVodsView.register(app)
|
||||
EpgView.register(app)
|
||||
|
|
|
@ -85,7 +85,6 @@ class M3uParseVodsView(FlaskView):
|
|||
m3u = M3uParseVods.objects()
|
||||
return render_template('autofill/show_vods.html', m3u=m3u)
|
||||
|
||||
@login_required
|
||||
def show_anonim(self):
|
||||
m3u = M3uParseVods.objects()
|
||||
return render_template('autofill/show_vods_anonim.html', m3u=m3u)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue