Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aya-soft/0efe89811d05fa90bb85c571e9eae01c to your computer and use it in GitHub Desktop.
Save aya-soft/0efe89811d05fa90bb85c571e9eae01c to your computer and use it in GitHub Desktop.
Контроллеры в пространстве имен Profile предназначены для работы с данными конкретных пользователей!Как же ты тут выбираешь из базы все комменты без разбора?
class Profile::ServiceStationCommentsController < ApplicationController
before_filter :authenticate_user!
before_filter :load_spare, only: [:index, :new]
def index
@comments = ServiceStationComment.all
end
@romhi
Copy link

romhi commented May 30, 2016

У меня список своих комментариев пользователь видит на странице своего сервисного центра service_station index. Внизу в табличке. Я удалил этот экшн чтобы не путаться

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment