From b9ca052cf1e7c58e09833371273672b7c854a98a Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Mon, 11 Jan 2016 13:00:35 -0800 Subject: [PATCH] add missing h_svc_ modules on 4.x+ --- FS/FS/h_svc_conferencing.pm | 29 +++++++++++++++++++++++++++++ FS/FS/h_svc_video.pm | 29 +++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 FS/FS/h_svc_conferencing.pm create mode 100644 FS/FS/h_svc_video.pm diff --git a/FS/FS/h_svc_conferencing.pm b/FS/FS/h_svc_conferencing.pm new file mode 100644 index 000000000..032cc3e6d --- /dev/null +++ b/FS/FS/h_svc_conferencing.pm @@ -0,0 +1,29 @@ +package FS::h_svc_conferencing; + +use strict; +use base qw( FS::h_Common FS::svc_conferencing ); + +sub table { 'h_svc_conferencing' }; + +=head1 NAME + +FS::h_svc_conferencing - Historical installed conferencing service objects + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +An FS::h_svc_conferencing object represents a historical conferencing service. +FS::h_svc_conferencing inherits from FS::h_Common and FS::svc_conferencing. + +=head1 BUGS + +=head1 SEE ALSO + +L, L, L, schema.html from the base +documentation. + +=cut + +1; + diff --git a/FS/FS/h_svc_video.pm b/FS/FS/h_svc_video.pm new file mode 100644 index 000000000..2a94d9462 --- /dev/null +++ b/FS/FS/h_svc_video.pm @@ -0,0 +1,29 @@ +package FS::h_svc_video; + +use strict; +use base qw( FS::h_Common FS::svc_video ); + +sub table { 'h_svc_video' }; + +=head1 NAME + +FS::h_svc_video - Historical installed video service objects + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +An FS::h_svc_video object represents a historical video service. +FS::h_svc_video inherits from FS::h_Common and FS::svc_video. + +=head1 BUGS + +=head1 SEE ALSO + +L, L, L, schema.html from the base +documentation. + +=cut + +1; + -- 2.11.0