diff --git a/atlassian/VERSION b/atlassian/VERSION index 4ea8ad87e..ecac8bfdc 100644 --- a/atlassian/VERSION +++ b/atlassian/VERSION @@ -1 +1 @@ -1.14.3 +2.14.3 \ No newline at end of file diff --git a/atlassian/bitbucket.py b/atlassian/bitbucket.py index 72296eb52..e4a0181eb 100644 --- a/atlassian/bitbucket.py +++ b/atlassian/bitbucket.py @@ -1419,3 +1419,9 @@ def create_code_insights_report(self, project_key, repository_slug, commit_id, r data = {"title": report_title} data.update(report_params) return self.put(url, data=data) + + def get_lfs_repo_status(self, project_key, repo): + url = 'rest/git-lfs/git-lfs/admin/projects/{projectKey}/repos/{repositorySlug}/enabled'.format( + projectKey=project_key, + repositorySlug=repo) + return self.get(url)