api-client/store/state.js

21 lines
382 B
JavaScript
Raw Normal View History

2019-11-02 19:50:40 +00:00
export default () => ({
2019-10-24 23:28:08 +00:00
request: {
method: 'GET',
url: 'https://reqres.in',
path: '/api/users',
label: '',
auth: 'None',
httpUser: '',
httpPassword: '',
2019-11-02 19:50:40 +00:00
passwordFieldType: 'password',
2019-10-24 23:28:08 +00:00
bearerToken: '',
headers: [],
params: [],
bodyParams: [],
rawParams: '',
rawInput: false,
requestType: '',
2019-10-24 23:28:08 +00:00
contentType: '',
}
2019-11-02 19:50:40 +00:00
});