mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-13 02:56:24 +05:00
Added ThresholdSv1GetThreshold in console. Fixes#1597
This commit is contained in:
committed by
Dan Christian Bogos
parent
3e91b838b4
commit
01992bfe10
@@ -26,7 +26,7 @@ import (
|
||||
func init() {
|
||||
c := &CmdGetThreshold{
|
||||
name: "threshold",
|
||||
rpcMethod: utils.ApierV1GetThresholdProfile,
|
||||
rpcMethod: utils.ThresholdSv1GetThreshold,
|
||||
rpcParams: &utils.TenantIDWithArgDispatcher{},
|
||||
}
|
||||
commands[c.Name()] = c
|
||||
@@ -63,6 +63,6 @@ func (self *CmdGetThreshold) PostprocessRpcParams() error {
|
||||
}
|
||||
|
||||
func (self *CmdGetThreshold) RpcResult() interface{} {
|
||||
atr := engine.ThresholdProfile{}
|
||||
atr := engine.Threshold{}
|
||||
return &atr
|
||||
}
|
||||
|
||||
68
console/threshold_profile.go
Normal file
68
console/threshold_profile.go
Normal file
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
|
||||
Copyright (C) ITsysCOM GmbH
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
package console
|
||||
|
||||
import (
|
||||
"github.com/cgrates/cgrates/engine"
|
||||
"github.com/cgrates/cgrates/utils"
|
||||
)
|
||||
|
||||
func init() {
|
||||
c := &CmdGetThresholdProfile{
|
||||
name: "threshold_profile",
|
||||
rpcMethod: utils.ApierV1GetThresholdProfile,
|
||||
rpcParams: &utils.TenantIDWithArgDispatcher{},
|
||||
}
|
||||
commands[c.Name()] = c
|
||||
c.CommandExecuter = &CommandExecuter{c}
|
||||
}
|
||||
|
||||
type CmdGetThresholdProfile struct {
|
||||
name string
|
||||
rpcMethod string
|
||||
rpcParams *utils.TenantIDWithArgDispatcher
|
||||
*CommandExecuter
|
||||
}
|
||||
|
||||
func (self *CmdGetThresholdProfile) Name() string {
|
||||
return self.name
|
||||
}
|
||||
|
||||
func (self *CmdGetThresholdProfile) RpcMethod() string {
|
||||
return self.rpcMethod
|
||||
}
|
||||
|
||||
func (self *CmdGetThresholdProfile) RpcParams(reset bool) interface{} {
|
||||
if reset || self.rpcParams == nil {
|
||||
self.rpcParams = &utils.TenantIDWithArgDispatcher{
|
||||
TenantID: new(utils.TenantID),
|
||||
ArgDispatcher: new(utils.ArgDispatcher),
|
||||
}
|
||||
}
|
||||
return self.rpcParams
|
||||
}
|
||||
|
||||
func (self *CmdGetThresholdProfile) PostprocessRpcParams() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (self *CmdGetThresholdProfile) RpcResult() interface{} {
|
||||
atr := engine.ThresholdProfile{}
|
||||
return &atr
|
||||
}
|
||||
Reference in New Issue
Block a user