mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 19:53:05 +08:00
7 lines
217 B
Ruby
7 lines
217 B
Ruby
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?
|
|
end
|
|
end
|