모듈: Mongoid::Attributes::Readonly
개요
이 모듈은 읽기 전용 속성의 동작을 정의합니다.
네임스페이스 아래에 정의됨
모듈: 클래스 메서드
인스턴스 메서드 요약 접기
-
#attribute_writeable?(name) ⇒ true | false
제공된 이름으로 속성을 작성할 수 있나요?
인스턴스 메서드 세부 정보
#attribute_writeable?(name) ⇒ true | false
제공된 이름으로 속성을 쓰기 (write) 수 있나요?
25 26 27 |
# 파일 'lib/mongoid/attributes/readonly.rb', 줄 25 def attribute_writeable?(이름) new_record? || (!readonly_attributes.포함?(이름) && _loaded?(이름)) end |