Sha256: fc0b7a2271b482236893132bdd0a6e3d44b415e3b7c9e0bfbb3367a7d3f4b35c

Contents?: true

Size: 171 Bytes

Versions: 1

Compression:

Stored size: 171 Bytes

Contents

# frozen_string_literal: true

class WikiSpace < ApplicationRecord
  has_many :wiki_pages, inverse_of: :wiki_space, dependent: :destroy
  def to_param
    title
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
yaw-0.0.1 app/models/wiki_space.rb