2024-07-18 14:39:38 -04:00
|
|
|
class Help::ArticlesController < ApplicationController
|
2024-07-26 18:00:41 +02:00
|
|
|
layout :with_sidebar
|
2024-07-18 14:39:38 -04:00
|
|
|
|
|
|
|
def show
|
|
|
|
@article = Help::Article.find(params[:id])
|
|
|
|
|
|
|
|
unless @article
|
|
|
|
head :not_found
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|