mirror of
https://github.com/datarhei/core.git
synced 2025-09-27 12:22:28 +08:00
Remove domain from process list options
This commit is contained in:
@@ -13,7 +13,6 @@ import (
|
|||||||
type ProcessListOptions struct {
|
type ProcessListOptions struct {
|
||||||
ID []string
|
ID []string
|
||||||
Filter []string
|
Filter []string
|
||||||
Domain string
|
|
||||||
Reference string
|
Reference string
|
||||||
IDPattern string
|
IDPattern string
|
||||||
RefPattern string
|
RefPattern string
|
||||||
@@ -25,7 +24,6 @@ func (p *ProcessListOptions) Query() *url.Values {
|
|||||||
values := &url.Values{}
|
values := &url.Values{}
|
||||||
values.Set("id", strings.Join(p.ID, ","))
|
values.Set("id", strings.Join(p.ID, ","))
|
||||||
values.Set("filter", strings.Join(p.Filter, ","))
|
values.Set("filter", strings.Join(p.Filter, ","))
|
||||||
values.Set("domain", p.Domain)
|
|
||||||
values.Set("reference", p.Reference)
|
values.Set("reference", p.Reference)
|
||||||
values.Set("idpattern", p.IDPattern)
|
values.Set("idpattern", p.IDPattern)
|
||||||
values.Set("refpattern", p.RefPattern)
|
values.Set("refpattern", p.RefPattern)
|
||||||
|
Reference in New Issue
Block a user