mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
15 lines
405 B
Python
15 lines
405 B
Python
import base64
|
|
import os
|
|
|
|
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):
|
|
return render(request, "mobile/mobile_workspace.xhtml", {})
|