mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-25 04:46:18 +10:00
5 lines
109 B
Ruby
5 lines
109 B
Ruby
class TeamController < ApplicationController
|
|
def show
|
|
@team = Team.find_by_slug params[:slug]
|
|
end
|
|
end |