Affix/rpress

View on GitHub
app/controllers/post_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PostController < ApplicationController
    def index
        @post = Post.where("post_slug='#{params[:slug]}'").first
    end
end