Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #153 from wei-lee/fix-auth-local
Browse files Browse the repository at this point in the history
make sure .auth is calling the cloud app for local dev
  • Loading branch information
Wei Li committed Mar 16, 2016
2 parents 1ecc70d + 6f730dc commit 2fa36f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog - FeedHenry Javascript SDK

## 2.14.3 - 2016-03-16 - Wei Li, Brian Leathem
* Make sure $fh.auth is calling the cloud app for local development
* Added a check if the uid === 0 when retrieving the uid from the uid_map

## 2.14.2 - 2016-03-09 - Niall Donnelly

* RHMAP-4862 - Removing field values if the field entry is not defined.
Expand All @@ -9,7 +13,6 @@
* RHMAP-3874 - Update Rules Engine For Appforms.

## 2.14.0 - 2016-02-26 - Niall Donnelly

* RHMAP-2950 - Added A Read Only Field To Forms Apps

## 2.13.2 - 2015-12-04 - Wei Li
Expand Down
2 changes: 1 addition & 1 deletion src/modules/api_auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function callAuthEndpoint(endpoint, data, opts, success, fail){
var path = app_props.host + constants.boxprefix + "admin/authpolicy/" + endpoint;

if (app_props.local) {
path = constants.boxprefix + "admin/authpolicy/" + endpoint;
path = cloud.getCloudHostUrl() + constants.boxprefix + "admin/authpolicy/" + endpoint;
}

ajax({
Expand Down

0 comments on commit 2fa36f1

Please sign in to comment.