是否可以将模型名称设置为配置变量?



我正在为Rails创建我自己的论坛插件,我遇到了一些配置文件的问题。我想让开发人员能够选择包含用户信息的模型所以我想创建一个示例配置文件,如:

# Example forumally configuration file
Forumally.config do |config|
  # ==> Formatter Configuration
  # Set default formatter to +ActionView::Helpers::TextHelper#simple_format+
  # which provide some simple formatting like wrapping with paragraphs and add
  # line breaks
  config.text_formatter = lambda {|text| simple_format text}
  # ==> User model configuration
  # Set user model name default is +User+
  config.user_model = User
end

是否可以将user_model变量设置为别名User模型(或任何其他包含用户信息的模型)

是否可以将user_model变量设置为别名User model(或任何其他包含用户信息的模型)

是的。

相关内容

  • 没有找到相关文章

最新更新