* Add help articles * Broadcast sync messages as notifications * Lint fixes * more lint fixes * Remove redundant code
12 lines
199 B
Ruby
12 lines
199 B
Ruby
class Help::ArticlesController < ApplicationController
|
|
layout "with_sidebar"
|
|
|
|
def show
|
|
@article = Help::Article.find(params[:id])
|
|
|
|
unless @article
|
|
head :not_found
|
|
end
|
|
end
|
|
end
|