Skip to content

Commit

Permalink
Merge pull request #227 from jenananthan/master
Browse files Browse the repository at this point in the history
Fix api conflicts
  • Loading branch information
jenananthan committed Mar 9, 2016
2 parents 62a7789 + ee542c3 commit 9223944
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ require('/modules/publisher.js').exec(function(ctx) {


//get uuid of given asset for-> provider,name,lifecycle state
routeManager.register('GET', 'publisher', '/publisher/api/asset/get/uuid/list/{type}/{provider}/{name}/{lifecyclestate}',
routeManager.register('GET', 'publisher', '/publisher/api/asset/get/uuid/list/state/{type}/{provider}/{name}/{lifecyclestate}',
function (context) {
var assetProvider = context.params.provider;
var assetName = context.params.name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function isPublishedToExternalStore(action, provider, name, version) {
function isPublishedVersionsAvailable(provider, name) {
var result;
$.ajax({
url: caramel.context + '/api/asset/get/uuid/list/' + 'webapp' + '/' + provider + '/' + name + '/'
url: caramel.context + '/api/asset/get/uuid/list/state/' + 'webapp' + '/' + provider + '/' + name + '/'
+ 'Published',
type: 'GET',
async: false,
Expand Down

0 comments on commit 9223944

Please sign in to comment.