1
0
Fork 0
forked from OpenNeo/impress

Delete a couple unused accessors

At least, I think they are!
This commit is contained in:
Emi Matchu 2023-11-11 15:42:08 -08:00
parent 644a6acc72
commit 94d15f005d
2 changed files with 0 additions and 2 deletions

View file

@ -1,7 +1,6 @@
module ClosetVisibility
class Level
attr_accessor :id, :name
attr_writer :description
def initialize(data)
data.each do |key, value|

View file

@ -12,7 +12,6 @@ class Pet < ApplicationRecord
belongs_to :pet_type
attr_reader :items, :pet_state
attr_accessor :contributor
scope :with_pet_type_color_ids, ->(color_ids) {
joins(:pet_type).where(PetType.arel_table[:id].in(color_ids))