Skip to content
This repository has been archived by the owner on Feb 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request milesrichardson#89 from ivannkf/master
Browse files Browse the repository at this point in the history
Add config object
  • Loading branch information
David Robinson committed Feb 17, 2015
2 parents 27f4061 + c12e2e7 commit 8a811db
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions parse_rest/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from parse_rest.connection import API_ROOT
from parse_rest.datatypes import ParseResource


class Config(ParseResource):
ENDPOINT_ROOT = '/'.join([API_ROOT, 'config'])

@classmethod
def get(cls):
return cls.GET('').get('params')

0 comments on commit 8a811db

Please sign in to comment.