11 lines
153 B
Ruby
11 lines
153 B
Ruby
class JointsDashboard < ApplicationRecord
|
|
self.table_name = "Joints"
|
|
|
|
# Prevent actidental updates from code:
|
|
def readonly?
|
|
true
|
|
end
|
|
|
|
|
|
end
|