openSNP/snpr

View on GitHub
app/controllers/achievements_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class AchievementsController < ApplicationController
  def show
    @achievement = Achievement.find(params[:id])
    @title = 'Achievements'
  end
end