class TrustyCms::Config::Definition

def settable?

A config item that is not settable cannot be changed in the running application.
Returns true unless :allow_change has been explicitly set to false. Defaults to true.
def settable?
  true unless allow_change == false
end