Skip to content
Extraits de code Groupes Projets
user_applications_helper.rb 190 octets
Newer Older
  • Learn to ignore specific revisions
  • module UserApplicationsHelper
      def user_application_name(app)
        if app.name?
          "#{app.name} (#{link_to(app.url, app.url)})"
        else
          link_to(app.url, app.url)
        end
      end
    end