Projet

Général

Profil

0001-archimed-fix-login-locators-14480.patch

Serghei Mihai (congés, retour 15/05), 02 janvier 2017 16:27

Télécharger (1,13 ko)

Voir les différences:

Subject: [PATCH] archimed: fix login locators (#14480)

 mandayejs/applications.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
mandayejs/applications.py
148 148

  
149 149
# Archimed App Settings
150 150
class Archimed(AppSettings):
151
    SITE_LOGIN_PATH = '/'
151
    SITE_LOGIN_PATH = '/logon.aspx'
152 152
    SITE_LOCATORS = [
153 153
        {
154 154
            'id': '#carte',
155 155
            'label': 'Identifiant',
156
            'name': 'carte',
156
            'name': 'name',
157 157
            'kind': 'string',
158 158
            'required': True,
159 159
            'help': '',
......
161 161
        {
162 162
            'id': '#code',
163 163
            'label': 'Mot de passe',
164
            'name': 'code',
164
            'name': 'pwd',
165 165
            'kind': 'password',
166 166
            'required': True,
167 167
            'help': ''
168
-