Skip to content

Instantly share code, notes, and snippets.

@dgorodnichy
Last active May 13, 2024 16:40
Show Gist options
  • Save dgorodnichy/d0ed48a3754925e7846479807fbb1054 to your computer and use it in GitHub Desktop.
Save dgorodnichy/d0ed48a3754925e7846479807fbb1054 to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
module SqlView
class FilmsController < ApplicationController
def index
render json: find_films
end
private
def find_films
FilmRating
.select(:title, :genre, :rate)
.as_json(except: :id)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment