Projet

Général

Profil

0003-Add-created-filed-to-SamlKeyValue-to-permit-expirati.patch

Benjamin Dauvergne, 10 mars 2015 13:42

Télécharger (23,7 ko)

Voir les différences:

Subject: [PATCH 3/3] Add created filed to SamlKeyValue to permit expiration of
 stored values (fixes #5639)

This commit also set the default manager to be the ExpireManager.
 src/authentic2/saml/models.py                      |   3 +
 .../0048_auto__add_field_keyvalue_created.py       | 261 +++++++++++++++++++++
 2 files changed, 264 insertions(+)
 create mode 100644 src/authentic2/saml/south_migrations/0048_auto__add_field_keyvalue_created.py
src/authentic2/saml/models.py
807 807
class KeyValue(models.Model):
808 808
    key = models.CharField(max_length=128, primary_key=True)
809 809
    value = PickledObjectField()
810
    created = models.DateTimeField(auto_now_add=True)
811

  
812
    objects = a2_managers.ExpireManager()
810 813

  
811 814
    def __unicode__(self):
812 815
        return self.key
src/authentic2/saml/south_migrations/0048_auto__add_field_keyvalue_created.py
1
# -*- coding: utf-8 -*-
2
from south.db import db
3
from south.v2 import SchemaMigration
4
from django.utils.timezone import now
5

  
6
from authentic2.compat import user_model_label
7

  
8
class Migration(SchemaMigration):
9

  
10
    def forwards(self, orm):
11
        # Adding field 'KeyValue.created'
12
        db.add_column(u'saml_keyvalue', 'created',
13
                      self.gf('django.db.models.fields.DateTimeField')(auto_now_add=True, default=now(), blank=True),
14
                      keep_default=False)
15

  
16

  
17
    def backwards(self, orm):
18
        # Deleting field 'KeyValue.created'
19
        db.delete_column(u'saml_keyvalue', 'created')
20

  
21

  
22
    models = {
23
        u'attribute_aggregator.attributeitem': {
24
            'Meta': {'object_name': 'AttributeItem'},
25
            'attribute_name': ('django.db.models.fields.CharField', [], {'default': "('OpenLDAProotDSE', 'OpenLDAProotDSE')", 'max_length': '100'}),
26
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
27
            'output_name_format': ('django.db.models.fields.CharField', [], {'default': "('urn:oasis:names:tc:SAML:2.0:attrname-format:uri', 'SAMLv2 URI')", 'max_length': '100'}),
28
            'output_namespace': ('django.db.models.fields.CharField', [], {'default': "('Default', 'Default')", 'max_length': '100'}),
29
            'required': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
30
            'source': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['attribute_aggregator.AttributeSource']", 'null': 'True', 'blank': 'True'})
31
        },
32
        u'attribute_aggregator.attributelist': {
33
            'Meta': {'object_name': 'AttributeList'},
34
            'attributes': ('django.db.models.fields.related.ManyToManyField', [], {'blank': 'True', 'related_name': "'attributes of the list'", 'null': 'True', 'symmetrical': 'False', 'to': u"orm['attribute_aggregator.AttributeItem']"}),
35
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
36
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '100'})
37
        },
38
        u'attribute_aggregator.attributesource': {
39
            'Meta': {'object_name': 'AttributeSource'},
40
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
41
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '200'}),
42
            'namespace': ('django.db.models.fields.CharField', [], {'default': "('Default', 'Default')", 'max_length': '100'})
43
        },
44
        user_model_label: {
45
            'Meta': {'object_name':  user_model_label.split('.')[-1]},
46
        },
47
        u'contenttypes.contenttype': {
48
            'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
49
            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
50
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
51
            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
52
            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
53
        },
54
        u'idp.attributepolicy': {
55
            'Meta': {'object_name': 'AttributePolicy'},
56
            'allow_attributes_selection': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
57
            'ask_consent_attributes': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
58
            'attribute_filter_for_sso_from_push_sources': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'filter attributes of push sources with list'", 'null': 'True', 'to': u"orm['attribute_aggregator.AttributeList']"}),
59
            'attribute_list_for_sso_from_pull_sources': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'attributes from pull sources'", 'null': 'True', 'to': u"orm['attribute_aggregator.AttributeList']"}),
60
            'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
61
            'filter_source_of_filtered_attributes': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
62
            'forward_attributes_from_push_sources': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
63
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
64
            'map_attributes_from_push_sources': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
65
            'map_attributes_of_filtered_attributes': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
66
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '100'}),
67
            'output_name_format': ('django.db.models.fields.CharField', [], {'default': "('urn:oasis:names:tc:SAML:2.0:attrname-format:uri', 'SAMLv2 URI')", 'max_length': '100'}),
68
            'output_namespace': ('django.db.models.fields.CharField', [], {'default': "('Default', 'Default')", 'max_length': '100'}),
69
            'send_error_and_no_attrs_if_missing_required_attrs': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
70
            'source_filter_for_sso_from_push_sources': ('django.db.models.fields.related.ManyToManyField', [], {'blank': 'True', 'related_name': "'filter attributes of push sources with sources'", 'null': 'True', 'symmetrical': 'False', 'to': u"orm['attribute_aggregator.AttributeSource']"})
71
        },
72
        u'saml.authorizationattributemap': {
73
            'Meta': {'object_name': 'AuthorizationAttributeMap'},
74
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
75
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '40'})
76
        },
77
        u'saml.authorizationattributemapping': {
78
            'Meta': {'object_name': 'AuthorizationAttributeMapping'},
79
            'attribute_name': ('django.db.models.fields.CharField', [], {'max_length': '40'}),
80
            'attribute_value': ('django.db.models.fields.CharField', [], {'max_length': '40'}),
81
            'attribute_value_format': ('django.db.models.fields.CharField', [], {'max_length': '40', 'blank': 'True'}),
82
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
83
            'map': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['saml.AuthorizationAttributeMap']"}),
84
            'source_attribute_name': ('django.db.models.fields.CharField', [], {'max_length': '40', 'blank': 'True'})
85
        },
86
        u'saml.authorizationsppolicy': {
87
            'Meta': {'object_name': 'AuthorizationSPPolicy'},
88
            'attribute_map': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'authorization_attributes'", 'null': 'True', 'to': u"orm['saml.AuthorizationAttributeMap']"}),
89
            'default_denial_message': ('django.db.models.fields.CharField', [], {'default': "u'You are not authorized to access the service.'", 'max_length': '80'}),
90
            'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
91
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
92
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'})
93
        },
94
        u'saml.idpoptionssppolicy': {
95
            'Meta': {'object_name': 'IdPOptionsSPPolicy'},
96
            'accept_slo': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
97
            'allow_create': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
98
            'back_url': ('django.db.models.fields.CharField', [], {'default': "'/'", 'max_length': '200'}),
99
            'binding_for_sso_response': ('django.db.models.fields.CharField', [], {'default': "'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact'", 'max_length': '200'}),
100
            'enable_binding_for_sso_response': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
101
            'enable_http_method_for_defederation_request': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
102
            'enable_http_method_for_slo_request': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
103
            'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
104
            'force_user_consent': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
105
            'forward_slo': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
106
            'handle_persistent': ('django.db.models.fields.CharField', [], {'default': "'AUTHSAML2_UNAUTH_PERSISTENT_ACCOUNT_LINKING_BY_AUTH'", 'max_length': '200'}),
107
            'handle_transient': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '200'}),
108
            'http_method_for_defederation_request': ('django.db.models.fields.IntegerField', [], {'default': '5', 'max_length': '200'}),
109
            'http_method_for_slo_request': ('django.db.models.fields.IntegerField', [], {'default': '4', 'max_length': '200'}),
110
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
111
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '200'}),
112
            'no_nameid_policy': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
113
            'persistent_identifier_attribute': ('django.db.models.fields.CharField', [], {'max_length': '200', 'null': 'True', 'blank': 'True'}),
114
            'requested_name_id_format': ('django.db.models.fields.CharField', [], {'default': "'none'", 'max_length': '200'}),
115
            'transient_is_persistent': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
116
            'want_authn_request_signed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
117
            'want_force_authn_request': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
118
            'want_is_passive_authn_request': ('django.db.models.fields.BooleanField', [], {'default': 'False'})
119
        },
120
        u'saml.keyvalue': {
121
            'Meta': {'object_name': 'KeyValue'},
122
            'created': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
123
            'key': ('django.db.models.fields.CharField', [], {'max_length': '128', 'primary_key': 'True'}),
124
            'value': ('authentic2.saml.fields.PickledObjectField', [], {})
125
        },
126
        u'saml.libertyartifact': {
127
            'Meta': {'object_name': 'LibertyArtifact'},
128
            'artifact': ('django.db.models.fields.CharField', [], {'max_length': '128', 'primary_key': 'True'}),
129
            'content': ('django.db.models.fields.TextField', [], {}),
130
            'creation': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
131
            'provider_id': ('django.db.models.fields.CharField', [], {'max_length': '256'})
132
        },
133
        u'saml.libertyassertion': {
134
            'Meta': {'object_name': 'LibertyAssertion'},
135
            'assertion': ('django.db.models.fields.TextField', [], {}),
136
            'assertion_id': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
137
            'creation': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
138
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
139
            'provider_id': ('django.db.models.fields.CharField', [], {'max_length': '256'}),
140
            'session_index': ('django.db.models.fields.CharField', [], {'max_length': '128'})
141
        },
142
        u'saml.libertyfederation': {
143
            'Meta': {'object_name': 'LibertyFederation'},
144
            'creation': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
145
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
146
            'idp': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['saml.LibertyIdentityProvider']", 'null': 'True', 'blank': 'True'}),
147
            'last_modification': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}),
148
            'name_id_content': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
149
            'name_id_format': ('django.db.models.fields.CharField', [], {'max_length': '100', 'null': 'True', 'blank': 'True'}),
150
            'name_id_qualifier': ('django.db.models.fields.CharField', [], {'max_length': '256', 'null': 'True', 'blank': 'True'}),
151
            'name_id_sp_name_qualifier': ('django.db.models.fields.CharField', [], {'max_length': '256', 'null': 'True', 'blank': 'True'}),
152
            'sp': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['saml.LibertyServiceProvider']", 'null': 'True', 'blank': 'True'}),
153
            'termination_notified': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
154
            'user': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['%s']" % user_model_label, 'null': 'True', 'on_delete': 'models.SET_NULL', 'blank': 'True'})
155
        },
156
        u'saml.libertyidentityprovider': {
157
            'Meta': {'object_name': 'LibertyIdentityProvider'},
158
            'authorization_policy': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'authorization_policy'", 'null': 'True', 'to': u"orm['saml.AuthorizationSPPolicy']"}),
159
            'enable_following_authorization_policy': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
160
            'enable_following_idp_options_policy': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
161
            'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
162
            'idp_options_policy': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'idp_options_policy'", 'null': 'True', 'to': u"orm['saml.IdPOptionsSPPolicy']"}),
163
            'liberty_provider': ('django.db.models.fields.related.OneToOneField', [], {'related_name': "'identity_provider'", 'unique': 'True', 'primary_key': 'True', 'to': u"orm['saml.LibertyProvider']"})
164
        },
165
        u'saml.libertymanagedump': {
166
            'Meta': {'object_name': 'LibertyManageDump'},
167
            'django_session_key': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
168
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
169
            'manage_dump': ('django.db.models.fields.TextField', [], {'blank': 'True'})
170
        },
171
        u'saml.libertyprovider': {
172
            'Meta': {'ordering': "('name',)", 'object_name': 'LibertyProvider'},
173
            'ca_cert_chain': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
174
            'entity_id': ('django.db.models.fields.URLField', [], {'unique': 'True', 'max_length': '200'}),
175
            'entity_id_sha1': ('django.db.models.fields.CharField', [], {'max_length': '40', 'blank': 'True'}),
176
            'federation_source': ('django.db.models.fields.CharField', [], {'max_length': '64', 'null': 'True', 'blank': 'True'}),
177
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
178
            'metadata': ('django.db.models.fields.TextField', [], {}),
179
            'name': ('django.db.models.fields.CharField', [], {'max_length': '140', 'blank': 'True'}),
180
            'protocol_conformance': ('django.db.models.fields.IntegerField', [], {'max_length': '10'}),
181
            'public_key': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
182
            'slug': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '140'}),
183
            'ssl_certificate': ('django.db.models.fields.TextField', [], {'blank': 'True'})
184
        },
185
        u'saml.libertyproviderpolicy': {
186
            'Meta': {'object_name': 'LibertyProviderPolicy'},
187
            'authn_request_signature_check_hint': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
188
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
189
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '64'})
190
        },
191
        u'saml.libertyserviceprovider': {
192
            'Meta': {'object_name': 'LibertyServiceProvider'},
193
            'attribute_policy': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'attribute_policy'", 'null': 'True', 'to': u"orm['idp.AttributePolicy']"}),
194
            'enable_following_attribute_policy': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
195
            'enable_following_sp_options_policy': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
196
            'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
197
            'liberty_provider': ('django.db.models.fields.related.OneToOneField', [], {'related_name': "'service_provider'", 'unique': 'True', 'primary_key': 'True', 'to': u"orm['saml.LibertyProvider']"}),
198
            'policy': ('django.db.models.fields.related.ForeignKey', [], {'default': '1', 'to': u"orm['saml.LibertyProviderPolicy']", 'null': 'True'}),
199
            'sp_options_policy': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'sp_options_policy'", 'null': 'True', 'to': u"orm['saml.SPOptionsIdPPolicy']"})
200
        },
201
        u'saml.libertysession': {
202
            'Meta': {'object_name': 'LibertySession'},
203
            'assertion': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['saml.LibertyAssertion']", 'null': 'True', 'blank': 'True'}),
204
            'creation': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
205
            'django_session_key': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
206
            'federation': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['saml.LibertyFederation']", 'null': 'True', 'blank': 'True'}),
207
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
208
            'name_id_content': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
209
            'name_id_format': ('django.db.models.fields.CharField', [], {'max_length': '100', 'null': 'True'}),
210
            'name_id_qualifier': ('django.db.models.fields.CharField', [], {'max_length': '256', 'null': 'True'}),
211
            'name_id_sp_name_qualifier': ('django.db.models.fields.CharField', [], {'max_length': '256', 'null': 'True'}),
212
            'provider_id': ('django.db.models.fields.CharField', [], {'max_length': '256'}),
213
            'session_index': ('django.db.models.fields.CharField', [], {'max_length': '80'})
214
        },
215
        u'saml.libertysessiondump': {
216
            'Meta': {'object_name': 'LibertySessionDump'},
217
            'django_session_key': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
218
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
219
            'kind': ('django.db.models.fields.IntegerField', [], {}),
220
            'session_dump': ('django.db.models.fields.TextField', [], {'blank': 'True'})
221
        },
222
        u'saml.libertysessionsp': {
223
            'Meta': {'object_name': 'LibertySessionSP'},
224
            'django_session_key': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
225
            'federation': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['saml.LibertyFederation']"}),
226
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
227
            'session_index': ('django.db.models.fields.CharField', [], {'max_length': '80'})
228
        },
229
        u'saml.samlattribute': {
230
            'Meta': {'object_name': 'SAMLAttribute'},
231
            'attribute_name': ('django.db.models.fields.CharField', [], {'max_length': '64'}),
232
            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['contenttypes.ContentType']"}),
233
            'friendly_name': ('django.db.models.fields.CharField', [], {'max_length': '64', 'blank': 'True'}),
234
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
235
            'name': ('django.db.models.fields.CharField', [], {'max_length': '64', 'blank': 'True'}),
236
            'name_format': ('django.db.models.fields.CharField', [], {'default': "'basic'", 'max_length': '64'}),
237
            'object_id': ('django.db.models.fields.PositiveIntegerField', [], {})
238
        },
239
        u'saml.spoptionsidppolicy': {
240
            'Meta': {'object_name': 'SPOptionsIdPPolicy'},
241
            'accept_slo': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
242
            'accepted_name_id_format': ('authentic2.saml.fields.MultiSelectField', [], {'max_length': '1024', 'blank': 'True'}),
243
            'ask_user_consent': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
244
            'authn_request_signed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
245
            'default_name_id_format': ('django.db.models.fields.CharField', [], {'default': "'none'", 'max_length': '256'}),
246
            'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
247
            'encrypt_assertion': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
248
            'encrypt_nameid': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
249
            'federation_mode': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}),
250
            'forward_slo': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
251
            'http_method_for_slo_request': ('django.db.models.fields.IntegerField', [], {'default': '4'}),
252
            u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
253
            'idp_initiated_sso': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
254
            'iframe_logout_timeout': ('django.db.models.fields.PositiveIntegerField', [], {'default': '300'}),
255
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
256
            'needs_iframe_logout': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
257
            'prefered_assertion_consumer_binding': ('django.db.models.fields.CharField', [], {'default': "'meta'", 'max_length': '4'})
258
        }
259
    }
260

  
261
    complete_apps = ['saml']
0
-