removed console logs

feature/appm-store/pbac
Jayasanka 6 years ago
parent 18f4f877ca
commit f5c1eea6fa

@ -17,15 +17,15 @@ const routes = [
component: Login component: Login
}, },
{ {
path: '/publisher/dashboard', path: '/publisher/application-mgt',
component: Dashboard, component: Dashboard,
routes: [ routes: [
{ {
path: '/publisher/dashboard/apps', path: '/publisher/application-mgt/apps',
component: Apps component: Apps
}, },
{ {
path: '/publisher/dashboard/new-app', path: '/publisher/application-mgt/new-app',
component: AddNewApp component: AddNewApp
} }
] ]

@ -64,17 +64,11 @@ class NormalLoginForm extends React.Component {
let data = "username=" + values.username + "&password=" + values.password + "&platform=publisher"; let data = "username=" + values.username + "&password=" + values.password + "&platform=publisher";
axios.post('https://localhost:9443/api/application-mgt-handler/v1.0/login', data axios.post('https://localhost:9443/api/application-mgt-handler/v1.0/login', data
).then(res => { ).then(res => {
console.log(res);
if (res.status === 200) { if (res.status === 200) {
console.log(res);
console.log(res.data);
console.log(res.status);
window.location = res.data.url; window.location = res.data.url;
} }
}).catch(function (error) { }).catch(function (error) {
if (error.response.status === 400) { if (error.response.status === 400) {
console.log("hoo");
thisForm.setState({ thisForm.setState({
inValid: true, inValid: true,
loading: false loading: false

Loading…
Cancel
Save