Skip to content
Snippets Groups Projects
Commit 0bc27bea authored by corecache's avatar corecache
Browse files

CAS Plugin: Added version selector to prepare for further version support.

parent f6378ce7
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ Meteor.startup(function(){
this.add("CAS_enabled", false, { type: 'boolean', group: 'CAS', public: true });
this.add("CAS_base_url" , '' , { type: 'string' , group: 'CAS', public: true });
this.add("CAS_login_url" , '' , { type: 'string' , group: 'CAS', public: true });
this.add("CAS_version" , '1.0' , { type: 'select', values: [{ key: '1.0', i18nLabel: '1.0'}], group: 'CAS' });
this.section('CAS Login Layout', function() {
this.add("CAS_popup_width" , '810' , { type: 'string' , group: 'CAS', public: true });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment