bookshelf-tastypie
v0.5.0
Published
Django Tastypie models for Bookshelf
Downloads
10
Maintainers
Readme
bookshelf-tastypie
Django Tastypie models for Bookshelf
Table of contents
Installation
NPM
npm install bookshelf-tastypie --save
Yarn
yarn add bookshelf-tastypie
Usage
Load models to registry
require('bookshelf-tastypie')(bookshelf);
or load model/collection
let ApiKey = require('bookshelf-tastypie')(bookshelf).ApiKey;
Available models / collections
Tastypie.ApiKey
ApiKey model
toString() -> string
String representation of api key
generate_key() -> string
Static function to generate unique keys
ApiKey = bookshelf.model('Tastypie.ApiKey')
new_key = ApiKey.generate_key()
Tastypie.ApiKeys
ApiKey collection
Tastypie.ApiAccess
toString() -> string
String representation od api access
Tastypie.ApiAccesses
TODO
- tests
- create ApiKey when Django user is created