1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/app/controllers/help/articles_controller.rb
Zach Gollwitzer fa08f027c7
Sync notifications and troubleshooting guides (#998)
* Add help articles

* Broadcast sync messages as notifications

* Lint fixes

* more lint fixes

* Remove redundant code
2024-07-18 14:39:38 -04:00

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