2017-12-01 14:04:01 -05:00
|
|
|
/**
|
|
|
|
* Mock response for login api
|
|
|
|
* @returns {promise}
|
|
|
|
*/
|
|
|
|
export default function() {
|
|
|
|
const response = {
|
2018-03-21 15:44:19 -05:00
|
|
|
url: 'http://xyz.com/image.jpg'
|
2017-12-01 14:04:01 -05:00
|
|
|
};
|
|
|
|
return Promise.resolve(response);
|
|
|
|
}
|