Sha256: 7a9d4b775c7f96c247c3d6d6c0c6de0032b40e05997b4b037f59489214cfe62a
Contents?: true
Size: 897 Bytes
Versions: 8
Compression:
Stored size: 897 Bytes
Contents
require_relative "../appy-app" # This will load the "Workspace" extension, which provides # a menu and tab based switching between screens. require "lanes/workspace/extension" # This will load the "Access" extension, which provides # Role based user access controls. Before enabling it # make sure that you have created some users in db/seed.rb # # require "lanes/workspace/access" module AppyApp class Extension < Lanes::Extensions::Definition identifier "appy-app" title "AppyApp" root_path Pathname.new(__FILE__).dirname.join("..","..").expand_path # If a data structure that can be represented as JSON # is returned from this method, it will be passed to # the setBootstrapData method in client/appy-app/Extension.coffee # when the app boots def client_bootstrap_data(view) nil end end end
Version data entries
8 entries across 8 versions & 1 rubygems