The code powering m.abunchtell.com https://m.abunchtell.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

17 строки
282 B

  1. # frozen_string_literal: true
  2. class SharesController < ApplicationController
  3. layout 'modal'
  4. before_action :authenticate_user!
  5. before_action :set_body_classes
  6. def show; end
  7. private
  8. def set_body_classes
  9. @body_classes = 'modal-layout compose-standalone'
  10. end
  11. end