mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 21:29:38 +02:00
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
|