17 lines
380 B
Python
17 lines
380 B
Python
# -*- coding: utf-8 -*-
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
import os.path
|
|
from django.db import models
|
|
from django.db.models import Q
|
|
from django.contrib.auth.models import User
|
|
|
|
from oxdata.utils.shortcuts import render_to_json_response
|
|
|
|
def ids(request):
|
|
json = {}
|
|
return render_to_json_response(json)
|
|
|
|
def urls(request):
|
|
json = {}
|
|
return render_to_json_response(json)
|
|
|