當前位置: 首頁>>代碼示例>>Python>>正文


Python UsersLogic.raise_if_cant_build_in_copr方法代碼示例

本文整理匯總了Python中coprs.logic.users_logic.UsersLogic.raise_if_cant_build_in_copr方法的典型用法代碼示例。如果您正苦於以下問題:Python UsersLogic.raise_if_cant_build_in_copr方法的具體用法?Python UsersLogic.raise_if_cant_build_in_copr怎麽用?Python UsersLogic.raise_if_cant_build_in_copr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在coprs.logic.users_logic.UsersLogic的用法示例。


在下文中一共展示了UsersLogic.raise_if_cant_build_in_copr方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: copr_edit_package_post

# 需要導入模塊: from coprs.logic.users_logic import UsersLogic [as 別名]
# 或者: from coprs.logic.users_logic.UsersLogic import raise_if_cant_build_in_copr [as 別名]
def copr_edit_package_post(copr, package_name):
    UsersLogic.raise_if_cant_build_in_copr(
        flask.g.user, copr, "You don't have permissions to edit this package.")

    url_on_success = helpers.copr_url("coprs_ns.copr_packages", copr)
    return process_save_package(copr, package_name, view="coprs_ns.copr_edit_package",
                                view_method=copr_edit_package, url_on_success=url_on_success)
開發者ID:0-T-0,項目名稱:copr,代碼行數:9,代碼來源:coprs_packages.py


注:本文中的coprs.logic.users_logic.UsersLogic.raise_if_cant_build_in_copr方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。