1.7.16. 현재 사용자 드롭 (up)
1.7.16.1. 방법
1.7.16.1.1. errors
실패한 제출 후 이 모델의 형식이 렌더링되면 발생한 오류가 반환됩니다.
{{ current_user.errors.name | inline_errors }}
1.7.16.1.2. admin?
사용자가 관리자인지 여부를 반환합니다.
{% if user.admin? %} <p>You are an admin of your account.</p> {% endif %}
1.7.16.1.3. 사용자 이름
사용자 이름, html 이스케이프를 반환합니다.
1.7.16.1.4. 계정
사용자 계정을 반환합니다.
1.7.16.1.5. name
사용자의 첫 번째 및 성을 반환합니다.
1.7.16.1.6. email
사용자의 이메일을 반환합니다.
1.7.16.1.7. password_required?
이 방법은 Janrain, CAS 또는 기타 SSO(Single-sign-on) 방법을 통해 인증된 사용자에 대해 기본 제공 개발자 포털 인증 메커니즘을 사용하는 사용자에게 true
를 반환합니다.
{{ if user.password_required? }} {{ endif }}
1.7.16.1.8. 섹션
사용자가 액세스할 수 있는 섹션 목록을 반환합니다.
{% if user.sections.size > 0 %} <p>You can access following sections of our portal:</p> <ul> {% for section in user.sections %} <li>{{ section }}</li> {% endfor %} </ul> {% endif %}
1.7.16.1.9. role
사용자의 역할을 반환합니다.
1.7.16.1.10. roles_collection
사용자에게 사용 가능한 역할 목록 튜닝
{% for role in user.roles_collection %} <li> <label for="user_role_{{ role.key }}"> {{ role.text }} </label> </li> {% endfor %}
1.7.16.1.11. url
사용자의 리소스 URL 반환
{{ 'Delete' | delete_button: user.url }}
1.7.16.1.12. edit_url
사용자를 편집하기 위한 URL 반환
{{ 'Edit' | link_to: user.edit_url, title: 'Edit', class: 'action edit' }}
1.7.16.1.13. 수행 가능
사용자 설정 및 사용자의 역할에 따라 현재 사용자의 권한을 노출합니다. 반환된 오브젝트에서 이러한 메서드를 호출할 수 있습니다.
- invite_user?
- create_application?
- see_log_requests?
{% if current_user.can.see_log_requests? and application.log_requests? %} (<a href="{{ application.log_requests_url }}" class="action edit">App Request Log</a>) {% endif %}
1.7.16.1.14. extra_fields
이 사용자에 대한 값으로 hidden 추가 필드 반환 : 모든 추가 필드 출력
{% for field in user.extra_fields %} {{ field.label }}: {{ field.value }} {% endfor %}
1.7.16.1.15. 필드
이 사용자의 값을 가진 모든 필드를 반환 예: 모든 필드 인쇄
{% for field in user.fields %} {{ field.label }}: {{ field.value }} {% endfor %}
1.7.16.1.16. builtin_fields
이 사용자에 대한 값이 있는 모든 내장 필드를 반환합니다.