зеркало из https://github.com/mozilla/mig.git
[minor] epm implementation for scribe module
This commit is contained in:
Родитель
e27686218e
Коммит
853112bafc
|
@ -246,3 +246,21 @@ type parameters struct {
|
|||
func newParameters() *parameters {
|
||||
return ¶meters{}
|
||||
}
|
||||
|
||||
// Enhanced privacy mode for scribe module, mask identifiers
|
||||
func (r *run) EnhancePrivacy(in modules.Result) (out modules.Result, err error) {
|
||||
var el ScribeElements
|
||||
|
||||
out = in
|
||||
err = out.GetElements(&el)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
for i := range el.Results {
|
||||
for j := range el.Results[i].Results {
|
||||
el.Results[i].Results[j].Identifier = "masked"
|
||||
}
|
||||
}
|
||||
out.Elements = el
|
||||
return
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче