Sha256: d22e90eef2bd106e0cb030bb4aad541d53b4f94ca5f24c090b22766ad4b36ac7
Contents?: true
Size: 793 Bytes
Versions: 101
Compression:
Stored size: 793 Bytes
Contents
module Actions module Katello module JailConcern module ContentView def content_view_id input['content_view']['id'] end def content_view_name input['content_view']['name'] end def content_view_label input['content_view']['label'] end def self.included(base) super base.instance_eval do apipie :class do property :content_view_id, Integer, desc: 'Returns the id of the content view' property :content_view_name, String, desc: 'Returns the name of the content view' property :content_view_label, String, desc: 'Returns the label of the content view' end end end end end end end
Version data entries
101 entries across 101 versions & 1 rubygems