Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
re2o
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nounous
re2o
Commits
f99d2cef
Commit
f99d2cef
authored
Jul 09, 2018
by
Hugo LEVY-FALK
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rend le aes_field disponible pour tout le monde et mon chibracounet facilement
parent
ca7c7c5f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
cotisations/migrations/0032_chequepayment_comnpaypayment.py
cotisations/migrations/0032_chequepayment_comnpaypayment.py
+2
-2
cotisations/migrations/0034_auto_20180703_0929.py
cotisations/migrations/0034_auto_20180703_0929.py
+2
-2
cotisations/payment_methods/comnpay/models.py
cotisations/payment_methods/comnpay/models.py
+1
-1
preferences/migrations/0040_auto_20180129_1745.py
preferences/migrations/0040_auto_20180129_1745.py
+1
-1
re2o/aes_field.py
re2o/aes_field.py
+0
-0
No files found.
cotisations/migrations/0032_chequepayment_comnpaypayment.py
View file @
f99d2cef
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Generated by Django 1.10.7 on 2018-07-02 18:56
# Generated by Django 1.10.7 on 2018-07-02 18:56
from
__future__
import
unicode_literals
from
__future__
import
unicode_literals
import
cotisations.payment_methods.comnpay
.aes_field
import
re2o
.aes_field
import
cotisations.payment_methods.mixins
import
cotisations.payment_methods.mixins
from
django.db
import
migrations
,
models
from
django.db
import
migrations
,
models
import
django.db.models.deletion
import
django.db.models.deletion
...
@@ -55,7 +55,7 @@ class Migration(migrations.Migration):
...
@@ -55,7 +55,7 @@ class Migration(migrations.Migration):
fields
=
[
fields
=
[
(
'id'
,
models
.
AutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'id'
,
models
.
AutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'payment_credential'
,
models
.
CharField
(
blank
=
True
,
default
=
''
,
max_length
=
255
)),
(
'payment_credential'
,
models
.
CharField
(
blank
=
True
,
default
=
''
,
max_length
=
255
)),
(
'payment_pass'
,
cotisations
.
payment_methods
.
comnpay
.
aes_field
.
AESEncryptedField
(
blank
=
True
,
max_length
=
255
,
null
=
True
)),
(
'payment_pass'
,
re2o
.
aes_field
.
AESEncryptedField
(
blank
=
True
,
max_length
=
255
,
null
=
True
)),
(
'payment'
,
models
.
OneToOneField
(
editable
=
False
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'payment_method'
,
to
=
'cotisations.Paiement'
)),
(
'payment'
,
models
.
OneToOneField
(
editable
=
False
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'payment_method'
,
to
=
'cotisations.Paiement'
)),
],
],
bases
=
(
cotisations
.
payment_methods
.
mixins
.
PaymentMethodMixin
,
models
.
Model
),
bases
=
(
cotisations
.
payment_methods
.
mixins
.
PaymentMethodMixin
,
models
.
Model
),
...
...
cotisations/migrations/0034_auto_20180703_0929.py
View file @
f99d2cef
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Generated by Django 1.10.7 on 2018-07-03 14:29
# Generated by Django 1.10.7 on 2018-07-03 14:29
from
__future__
import
unicode_literals
from
__future__
import
unicode_literals
import
cotisations.payment_methods.comnpay
.aes_field
import
re2o
.aes_field
from
django.db
import
migrations
,
models
from
django.db
import
migrations
,
models
...
@@ -21,6 +21,6 @@ class Migration(migrations.Migration):
...
@@ -21,6 +21,6 @@ class Migration(migrations.Migration):
migrations
.
AlterField
(
migrations
.
AlterField
(
model_name
=
'comnpaypayment'
,
model_name
=
'comnpaypayment'
,
name
=
'payment_pass'
,
name
=
'payment_pass'
,
field
=
cotisations
.
payment_methods
.
comnpay
.
aes_field
.
AESEncryptedField
(
blank
=
True
,
max_length
=
255
,
null
=
True
,
verbose_name
=
'ComNpay Secret Key'
),
field
=
re2o
.
aes_field
.
AESEncryptedField
(
blank
=
True
,
max_length
=
255
,
null
=
True
,
verbose_name
=
'ComNpay Secret Key'
),
),
),
]
]
cotisations/payment_methods/comnpay/models.py
View file @
f99d2cef
...
@@ -27,7 +27,7 @@ from django.utils.translation import ugettext_lazy as _l
...
@@ -27,7 +27,7 @@ from django.utils.translation import ugettext_lazy as _l
from
cotisations.models
import
Paiement
from
cotisations.models
import
Paiement
from
cotisations.payment_methods.mixins
import
PaymentMethodMixin
from
cotisations.payment_methods.mixins
import
PaymentMethodMixin
from
.aes_field
import
AESEncryptedField
from
re2o
.aes_field
import
AESEncryptedField
from
.comnpay
import
Transaction
from
.comnpay
import
Transaction
...
...
preferences/migrations/0040_auto_20180129_1745.py
View file @
f99d2cef
...
@@ -6,7 +6,7 @@ from django.db import migrations, models
...
@@ -6,7 +6,7 @@ from django.db import migrations, models
try
:
try
:
import
preferences.aes_field
as
aes_field
import
preferences.aes_field
as
aes_field
except
ImportError
:
except
ImportError
:
import
cotisations.payment_methods.comnpay
.aes_field
as
aes_field
import
re2o
.aes_field
as
aes_field
class
Migration
(
migrations
.
Migration
):
class
Migration
(
migrations
.
Migration
):
...
...
cotisations/payment_methods/comnpay
/aes_field.py
→
re2o
/aes_field.py
View file @
f99d2cef
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment