You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class SettingsController < ApplicationController
- def show
- @old_projects_url = nil
- @old_projects_url = "https://www.trustie.net/users/#{current_user.try(:login)}/projects" if User.current.logged?
-
- @add = Site.add
- @personal = User.current.logged? ? Site.personal : []
-
- # @sites = Site.group(:site_type).select(:name, :url, :key)
- end
- end
|