NewsBlur-viq/apps/mobile/views.py

13 lines
402 B
Python
Raw Normal View History

import os
import base64
from django.conf import settings
from django.http import HttpResponse
from django.shortcuts import render
from apps.profile.models import Profile
from apps.reader.models import UserSubscription, UserSubscriptionFolders
from utils import json_functions as json
from utils import log as logging
def index(request):
2021-05-08 19:16:37 -04:00
return render(request, 'mobile/mobile_workspace.xhtml', {})