about summary refs log tree commit diff stats
path: root/app/controllers/entries_controller.rb
blob: 89d06c03319f6e40e24c6b3113edab6bbebda5f4 (plain) (blame)
1
2
3
4
5
6
7
class EntriesController < ApplicationController

  def show
    @entry = Entry.where(directory: params[:directory], slug: params[:slug]).first
  end

end