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 }}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 %}1.7.41.1.9. logo_url
로고 URL 반환
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 %}1.7.41.1.11. finance_allowed?
1.7.41.1.12. multiple_users_allowed?
개발자 계정에 여러 개의 로그인에 연결할 수 있는 경우 True입니다. 이는 사용자의 3scale 계획에 따라 다르며 audience > Developer Portal > Feature Visibility 아래에 있는 관리 포털에서 개발자 포털에 대한 가시성이 설정되어 있는 경우에 따라 달라집니다.
{% 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 %}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>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 %}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 관리 포털에서 계정 관리를 활성화하거나 비활성화할 수 있습니다.