feat: added load more button to github repos dropdown (#414)
This commit is contained in:
parent
4fad685ec8
commit
c7923f6d44
4 changed files with 170 additions and 61 deletions
|
|
@ -39,6 +39,15 @@ abstract class APIService {
|
|||
};
|
||||
}
|
||||
|
||||
getWithoutBase(url: string, config = {}): Promise<any> {
|
||||
return axios({
|
||||
method: "get",
|
||||
url: url,
|
||||
headers: this.getAccessToken() ? this.getHeaders() : {},
|
||||
...config,
|
||||
});
|
||||
}
|
||||
|
||||
get(url: string, config = {}): Promise<any> {
|
||||
return axios({
|
||||
method: "get",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue