You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
595 B
15 lines
595 B
9 months ago
|
from leapp.models import fields, Model
|
||
|
from leapp.topics import TransactionTopic
|
||
|
|
||
|
|
||
|
class SkippedRepositories(Model):
|
||
|
"""
|
||
|
Message that contains all skipped repositories and the packages that will not be upgraded as a result of those
|
||
|
repositories being skipped.
|
||
|
"""
|
||
|
topic = TransactionTopic
|
||
|
repos = fields.List(fields.String(), default=[])
|
||
|
""" List of repositories ids that are going to be skipped for the upgrade """
|
||
|
packages = fields.List(fields.String(), default=[])
|
||
|
""" List of packages that are not going to be upgraded because of skipped repositories """
|