move org ip rules into their own controller

This commit is contained in:
Adam Cooke
2017-04-21 10:32:22 +01:00
parent ec73bffce0
commit 6eb425eaed
7 changed files with 5 additions and 5 deletions
@@ -0,0 +1,9 @@
class OrganizationIPPoolsController < ApplicationController
include WithinOrganization
def index
@ip_pools = organization.ip_pools.dedicated.order(:name)
end
end