+ Patch: 0002-starttls-support-via-SMTP_STARTTLS-provide-additiona.patch + Patch: 0001-Do-not-assume-there-is-a-SMTP_STARTTLS-configuration.patch - Backport fix for docs repo access grant + Patch: 0001-Fix-repotype-spelling.patch - Backport fix for visual bug on API docs formatting + Patch: 0001-api-fix-apidoc-format-on-api_view_issues_history_det.patch - Backport fix to changing pull mirror settings + Patch: 0001-Allow-editing-the-URL-a-project-is-mirrored-from.patch - Backport fix to add descriptions to API scopes + Patch: 0001-Show-the-ACL-name-in-addition-to-the-description-whe.patch - Backport fix to make heatmap UI functional again + Patch: 0001-Bring-back-JS-library-used-for-the-heatmap.patch - Backport fix for handling headers + Patch: 0001-Ensure-the-title-name-of-the-headers-are-strings.patch - Backport fix for burndown graph title + Patch: 0001-Fix-the-title-of-the-graph-showing-the-evolution-of-.patch - Backport fix for permissions on authorized_keys file + Patch: 0001-Make-sure-authorized_keys-file-has-mode-600.patch - Add patch to use whitenoise for rendering static assets + Patch: 0101-Use-WhiteNoise-to-serve-static-assets-for-the-Pagure.patch - Refresh default configuration patch + Patch: pagure-5.0-default-example-cfg.patch OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/pagure?expand=0&rev=39
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 86c9a6f729968432b9f0dd785548fbe8065f6f4b Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= <lsedlar@redhat.com>
|
|
Date: Fri, 22 May 2020 11:49:10 +0200
|
|
Subject: [PATCH] Fix repotype spelling
|
|
|
|
---
|
|
pagure/internal/__init__.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/pagure/internal/__init__.py b/pagure/internal/__init__.py
|
|
index 4f106e8b..3fa7edfa 100644
|
|
--- a/pagure/internal/__init__.py
|
|
+++ b/pagure/internal/__init__.py
|
|
@@ -157,11 +157,11 @@ def check_ssh_access():
|
|
return flask.jsonify({"access": False})
|
|
_log.info("Checking ACLs on project: %s" % project.fullname)
|
|
|
|
- if repotype not in ["main", "doc"] and not pagure.utils.is_repo_user(
|
|
+ if repotype not in ["main", "docs"] and not pagure.utils.is_repo_user(
|
|
project, remoteuser
|
|
):
|
|
# Deploy keys are not allowed on ticket and PR repos but they are
|
|
- # allowed for main and doc repos.
|
|
+ # allowed for main and docs repos.
|
|
_log.info("%s is not a contributor to this project" % remoteuser)
|
|
return flask.jsonify({"access": False})
|
|
|
|
--
|
|
2.26.1
|
|
|