display_name: "The Repetitive"
# The anti-collectable doesn't fit into our system right now so let's ignore it.
excluded_nodes: "Components/Collectables/anticollectable"
# These paintings are directly above/behind panels and thus can't be entered.
excluded_nodes: "Meshes/eyeRed3"
excluded_nodes: "Meshes/eyeRed4"
# I do not know what this is.
excluded_nodes: "Components/Doors/Door3/Hinge/panel_i"
# This has something to do with the magenta room entrance proxy panel.
excluded_nodes: "Panels/Eval/panel_26_proxyied_fake"
>
blob: 200d63c81db0473d34a45a14a40aaa711ce2c5cd (
plain) (
tree)
|
|
class RecordsController < ApplicationController
def index
@records = Record.order(created_at: :desc).limit(20)
end
end
|