mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
* Add help articles * Broadcast sync messages as notifications * Lint fixes * more lint fixes * Remove redundant code
11 lines
199 B
Ruby
11 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
|