def get_bz_params()

in bugbot/rules/moved_to_performance.py [0:0]


    def get_bz_params(self, date):
        fields = [
            "creator",
            "attachments.is_obsolete",
            "attachments.is_patch",
            "attachments.content_type",
            "attachments.data",
            "attachments.file_name",
            "attachments.creator",
            "attachments.creation_time",
            "comments.text",
            "comments.creator",
            "comments.creation_time",
            "url",
        ]

        params = {
            "include_fields": fields,
            "resolution": "---",
            "bug_type": "defect",
            "f1": "product",
            "o1": "equals",
            "v1": "Core",
            "f2": "component",
            "o2": "equals",
            "v2": "Performance",
            "f3": "component",
            "o3": "changedafter",
            "v3": "-7d",
            "n4": 1,
            "f4": "component",
            "o4": "changedafter",
            "v4": "-1d",
            "n5": 1,
            "f5": "longdesc",
            "o5": "casesubstring",
            "v5": "could you make sure the following information is on this bug?",
        }

        return params