1.7.41. 공급자 드롭 (up)


1.7.41.1. 방법

1.7.41.1.1. name

조직의 이름을 반환합니다.

Domain {{ provider.domain }}

{% if provider.multiple_applications_allowed? %}

     <p>Applications</p>
     <ul>
     {% for app in account.applications %}
       <li>{{ app.name }}</li>
     {% endfor %}
     </ul>

{% else %}
   Application {{ account.applications.first.name }}
{% endif %}

For general questions contact us at {{ provider.support_email }},
for invoice or payment related questions contact us at {{ provider.finance_support_email }}
Copy to Clipboard Toggle word wrap
1.7.41.1.2. payment_gateway

조직과 연결된 결제 게이트웨이를 반환합니다.

1.7.41.1.3. domain

개발자 포털의 도메인

1.7.41.1.4. timezone

사용하는 시간대를 반환합니다. 관리 포털에서 시간대를 변경할 수 있습니다. 대시보드 > 계정 설정 을 선택합니다. 개요 페이지에서 계정 세부 정보 까지 아래로 스크롤하고 편집 을 클릭하고 시간대 필드를 수정합니다.

1.7.41.1.5. support_email

계정의 이메일 지원

1.7.41.1.6. finance_support_email

계정의 재무 지원 이메일

1.7.41.1.7. telephone_number

계정의 전화 번호를 반환합니다.

1.7.41.1.8. multiple_applications_allowed?

개발자가 자체 키, 통계 등을 사용하여 별도의 애플리케이션을 사용할 수 있는 경우 true입니다. 이것은 당신의 3scale 계획에 달려 있습니다.

{% if provider.multiple_applications_allowed? %}

     <p>Applications</p>
     <ul>
     {% for app in account.applications %}
       <li>{{ app.name }}</li>
     {% endfor %}
     </ul>

{% else %}
   Application {{ account.applications.first.name }}
{% endif %}
Copy to Clipboard Toggle word wrap
1.7.41.1.9. logo_url

로고 URL 반환

Copy to Clipboard Toggle word wrap
1.7.41.1.10. multiple_services_allowed?

3scale 계획을 통해 여러 API를 별도의 서비스로 관리할 수 있는 경우 True입니다.

{% if provider.multiple_services_allowed? %}
  {% for service in provider.services %}
     Service {{ service.name }} is available.
  {% endfor %}
{% endif %}
Copy to Clipboard Toggle word wrap
1.7.41.1.11. finance_allowed?
1.7.41.1.12. multiple_users_allowed?

개발자 계정에 여러 개의 로그인에 연결할 수 있는 경우 True입니다. 이는 3scale 계획과 /p/admin/cms/switches[settings]에서 개발자 포털에 대한 가시성이 설정되어 있는 경우 달라질 수 있습니다.

{% if provider.multiple_users_allowed? %}
  <ul id="subsubmenu">
    <li>
       {{ 'Users' | link_to: urls.users }}
    </li>
    <li>
      {{ 'Sent invitations' | link_to: urls.invitations }}
    </li>
  </ul>
{% endif %}
Copy to Clipboard Toggle word wrap
1.7.41.1.13. account_plans

게시된 모든 계정 계획을 반환합니다.

<p>We offer following account plans:</p>
<ul>
{% for plan in model.account_plans %}
  <li>{{ plan.name }} </li>
{% endfor %}
</ul>
Copy to Clipboard Toggle word wrap
1.7.41.1.14. services

정의된 모든 서비스를 반환합니다.

<p>You can signup to any of our services!</p>
<ul>
{% for service in provider.services %}
  <li>{{ service.name }} <a href="/signup/service/{{ service.system_name }}">Signup!</a></li>
{% endfor %}
Copy to Clipboard Toggle word wrap
1.7.41.1.15. signups_enabled?

Audience > Accounts > Settings > Usage Rules > 아래의 3scale 관리 포털에서 signups를 활성화하거나 비활성화할 수 있습니다.

1.7.41.1.16. account_management_enabled?

Audience > Accounts > Settings > Usage Rules > 아래의 3scale 관리 포털에서 계정 관리를 활성화하거나 비활성화할 수 있습니다.

맨 위로 이동
Red Hat logoGithubredditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다. 최신 업데이트를 확인하세요.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

Theme

© 2025 Red Hat