Source code for mattermostdriver.endpoints.data_retention

from .base import Base


[docs]class DataRetention(Base): endpoint = '/data_retention'
[docs] def get_data_retention_policy(self): return self.client.get( self.endpoint + '/policy' )