Skip to content
Snippets Groups Projects
Commit 23e53003 authored by Cam Saul's avatar Cam Saul
Browse files

couldn't help myself

parent ffabc8e5
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ DatabasesControllers.controller('DatabaseEdit', ['$scope', '$routeParams', '$loc
});
};
// TODO - Why do we *require* a valid connection in setup, but not care about it here?
// TODO - Why do we *require* a valid connection in setup, but not care about it here? :sob:
$scope.save = function(database, details) {
if ($routeParams.databaseId) {
update(database, details);
......
......@@ -24,7 +24,7 @@ MetabaseServices.factory('Metabase', ['$resource', '$cookies', function($resourc
method:'POST',
headers: {'X-CSRFToken': function() { return $cookies.csrftoken; }},
transformRequest: function(data, headersGetter) {
// API expects 'port' to be an int
// API expects 'port' to be an int :imp:
if (data.port) data.port = parseInt(data.port);
return angular.toJson(data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment