mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-08 04:25:07 +00:00
28 lines
520 B
JavaScript
28 lines
520 B
JavaScript
//--- Modules/Imports ---//
|
|
import { Http } from '@capacitor-community/http';
|
|
|
|
const module = {
|
|
|
|
//--- Get GitHub Commits ---//
|
|
commits: new Promise((resolve, reject) => {
|
|
|
|
Http.request({
|
|
method: 'GET',
|
|
url: "https://api.github.com/repos/Frontesque/VueTube/commits",
|
|
params: { }
|
|
})
|
|
.then((res) => {
|
|
resolve(res.data)
|
|
})
|
|
.catch((err) => {
|
|
reject(err)
|
|
});
|
|
|
|
})
|
|
|
|
}
|
|
|
|
//--- Start ---//
|
|
export default ({ app }, inject) => {
|
|
inject('vuetube', module)
|
|
}
|