From dda73c0c8b236cd311dcd400d6d8905e750b46a8 Mon Sep 17 00:00:00 2001 From: Lars Dieckow Date: Thu, 2 May 2013 16:36:39 +0200 Subject: [PATCH] not needed anymore --- lib/NGCP/Schema/provisioning.pm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/NGCP/Schema/provisioning.pm b/lib/NGCP/Schema/provisioning.pm index 834cde37..35c46c70 100644 --- a/lib/NGCP/Schema/provisioning.pm +++ b/lib/NGCP/Schema/provisioning.pm @@ -55,8 +55,6 @@ method create_domain($data) { }); $self->resultset('voip_domains')->create({domain => $data->{domain}}); }); - # FIXME what does this do in the model? - # FIXME $self->_sip_domain_reload; return; } @@ -84,8 +82,6 @@ method update_domain($data) { $self->txn_do(λ{ my $domainid = $self->_get_domain_id($data->{domain}); }); - # FIXME what does this do in the model? - # FIXME $self->_sip_domain_reload; return; } @@ -107,7 +103,6 @@ method delete_domain($data) { } )->delete_all; }); - $self->_sip_domain_reload; return; }