Files
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

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