Skip to content

Commit

Permalink
breaking: remove account.fetch() and account.profile.fetch()
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

`account.fetch()` and `account.profile.fetch()` have been removed. Use `account.get()` and `account.profile.get()` instead
  • Loading branch information
gr2m committed Mar 9, 2017
1 parent 616e227 commit e5c1af2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 94 deletions.
2 changes: 0 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ function Account (options) {
signOut: require('./lib/sign-out').bind(null, state),
destroy: require('./lib/destroy').bind(null, state),
get: require('./lib/get').bind(null, state),
fetch: require('./lib/fetch').bind(null, state),
update: require('./lib/update').bind(null, state),
profile: {
get: require('./lib/profile-get').bind(null, state),
fetch: require('./lib/profile-fetch').bind(null, state),
update: require('./lib/profile-update').bind(null, state)
},
request: require('./lib/request').bind(null, state),
Expand Down
50 changes: 0 additions & 50 deletions lib/fetch.js

This file was deleted.

42 changes: 0 additions & 42 deletions lib/profile-fetch.js

This file was deleted.

0 comments on commit e5c1af2

Please sign in to comment.