diff options
author | Endi S. Dewata <edewata@redhat.com> | 2010-10-01 12:53:13 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-10-01 16:17:51 -0400 |
commit | aa7ecb6f5ff234fa9001bbea3ebe2e5360656139 (patch) | |
tree | 8c9957db5803b46daefe12c2889a470f2f83f564 /install/static/host.js | |
parent | 38490d35d3b8410a8077fb035b57cea86dd3bdab (diff) | |
download | freeipa-aa7ecb6f5ff234fa9001bbea3ebe2e5360656139.tar.gz freeipa-aa7ecb6f5ff234fa9001bbea3ebe2e5360656139.tar.xz freeipa-aa7ecb6f5ff234fa9001bbea3ebe2e5360656139.zip |
Autogenerating Quick Links.
ipa_entity_quick_links() has been added to generate quick links
automatically from object's attribute_members, the same logic used
for generating facet list. The search definition for each entity
has been updated to use the new function. A unit test has been
added for this function.
Diffstat (limited to 'install/static/host.js')
-rw-r--r-- | install/static/host.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install/static/host.js b/install/static/host.js index f59c1a3c..432f2f75 100644 --- a/install/static/host.js +++ b/install/static/host.js @@ -24,7 +24,8 @@ ipa_entity_set_search_definition('host', [ ['fqdn', 'Name', null], ['description', 'Description', null], ['enrolled', 'Enrolled?', null], - ['manages', 'Manages?', null] + ['manages', 'Manages?', null], + ['quick_links', 'Quick Links', ipa_entity_quick_links] ]); ipa_entity_set_add_definition('host', [ |