I am trying to boostrap OpenMeetings using this boostrap package https://github.com/l0rdn1kk0n/wicket-bootstrap. According to the tutorial of how to, I'll do it thus:
// best place to do this is in Application#init()
Bootstrap.install(this);
// if you want to customize bootstrap:
BootstrapSettings settings = new BootstrapSettings();
settings.setXXX(...);
Bootstrap.install(this, settings);
I am new to OpenMeetings, please can anyone kindly point me to where I am to put this snippet. As stated above it is suppose to be in Application#init(), but I don't know where the such a file could be in OpenMeetings.