Skip to content

Commit 70d2668

Browse files
authored
Add test LFS fetch method (#386)
* A new Tempo method * Tempo: add team member * Bugfix * Set workload method * Bump version * Organize the imports * Polish * Bump version * Add LFS info fetcher
1 parent ca17f0a commit 70d2668

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

atlassian/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.3
1+
2.14.3

atlassian/bitbucket.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1419,3 +1419,9 @@ def create_code_insights_report(self, project_key, repository_slug, commit_id, r
14191419
data = {"title": report_title}
14201420
data.update(report_params)
14211421
return self.put(url, data=data)
1422+
1423+
def get_lfs_repo_status(self, project_key, repo):
1424+
url = 'rest/git-lfs/git-lfs/admin/projects/{projectKey}/repos/{repositorySlug}/enabled'.format(
1425+
projectKey=project_key,
1426+
repositorySlug=repo)
1427+
return self.get(url)

0 commit comments

Comments
 (0)