From 0c60c121242189e9d7cfb65881b41a25393d965d Mon Sep 17 00:00:00 2001 From: Isaac Grynsztein Date: Wed, 25 Mar 2020 07:39:50 -0400 Subject: [PATCH] Append to last commit --- src/app/posts.services.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/posts.services.ts b/src/app/posts.services.ts index 55fc0b1..54e464d 100644 --- a/src/app/posts.services.ts +++ b/src/app/posts.services.ts @@ -179,6 +179,11 @@ export class PostsService { getAllSubscriptions() { return this.http.post(this.path + 'getAllSubscriptions', {}); } + + // gets tag of the latest version of youtubedl-material + getLatestGithubRelease() { + return this.http.get('https://api.github.com/repos/tzahi12345/youtubedl-material/releases/latest'); + } }