Skip to content

Commit

Permalink
[NF] Remove the meeting controller and all associated files
Browse files Browse the repository at this point in the history
The meeting controller was written in house at INEX for our own particular
purposes. It was never documented and was disabled by default. As such,
we expect no one is using it and we have stopped for quite a while.

There are other tools ( https://getindico.io/ ) and services
(EventBrite) that solve this problem better than we ever did.
  • Loading branch information
barryo committed Oct 27, 2017
1 parent 80c930c commit eed271b
Show file tree
Hide file tree
Showing 54 changed files with 8 additions and 6,443 deletions.
6 changes: 0 additions & 6 deletions app/Providers/ZendFrameworkServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,12 +333,6 @@ private function setupIxpTools( array $options ): array {
$options['peeringdb']['url'] = config( 'ixp_tools.peeringdb_url' );
}

if( is_array( config('ixp_tools.meeting') ) ) {
foreach( config('ixp_tools.meeting') as $k => $v ) {
$options['meeting'][$k] = $v;
}
}

if( config( 'ixp_tools.billing_updates_notify' ) ) {
$options['billing']['updates_notify'] = config( 'ixp_tools.billing_updates_notify' );
}
Expand Down
18 changes: 0 additions & 18 deletions application/controllers/DashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,6 @@ public function indexAction()

$this->view->isSuperUser = $this->getUser()->isSuperUser();
$this->view->crossConnects = $this->getD2R( "\\Entities\\Customer" )->getCrossConnects( $this->getCustomer()->getId() );
/*
// is there a meeting available to register for?
$this->view->meeting = false;
if( ( $meeting = MeetingTable::getUpcomingMeeting() ) !== false
&& ( !isset( $this->session->dashboard_skip_meeting ) || !$this->session->dashboard_skip_meeting )
)
{
$rsvp = $this->getUser()->hasPreference( 'meeting.attending.' . $meeting['id'] );
if( $rsvp === false )
{
$this->view->meeting = $meeting;
$this->view->meeting_pref = $rsvp;
}
}
*/


if( !$this->getCustomer()->isTypeAssociate() )
{
Expand Down
347 changes: 0 additions & 347 deletions application/controllers/MeetingController.php

This file was deleted.

Loading

0 comments on commit eed271b

Please sign in to comment.