A corporation manager and dashboard for EVE Online
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

admin_setting.rb 104 B

123456
  1. class AdminSetting < ActiveRecord::Base
  2. def self.get(key)
  3. self.find_by(key: key).value
  4. end
  5. end