Merge pull request #250 from CartoDB/accept-open-string-as-valid-auth

Accept open string as valid auth
This commit is contained in:
Raul Ochoa 2015-01-28 17:35:38 +01:00
commit 9523d40937
3 changed files with 17 additions and 0 deletions

View File

@ -1,6 +1,9 @@
1.26.2 -- 2015-mm-dd
--------------------
Bugfixes:
- Accept 'open' string in templates' `auth` as authorized.
1.26.1 -- 2015-01-28
--------------------

View File

@ -398,6 +398,10 @@ o.isAuthorized = function(template, authTokens) {
return false;
}
if (_.isString(templateAuth) && templateAuth === 'open') {
return true;
}
if (templateAuth.method === 'open') {
return true;
}

View File

@ -92,4 +92,14 @@ suite('template_maps_auth', function() {
})
});
test("auth as 'open' string is authorized", function(done) {
var template = {
name: 'wadus_template',
auth: 'open'
};
assert.ok(templateMaps.isAuthorized(template));
done();
});
});