DGA-SCD / gsurvey

It's dynamic survey platform using new technology
MIT License
1 stars 0 forks source link

support secure survey with password and change structure of code to use MVC pattern #237

Closed pepsi7959 closed 4 years ago

pepsi7959 commented 4 years ago

Details

Example

POST /api/v2/admin/surveys

{
    "userid": "1",
    "name": "my firt survey",
    "surveyid": "abc1234f",
    "version": "1",
    "password": "1234", //default is null
    "pages": {
        "Q1": "Do you have a girl friend?",
        "Q2": "Do you have a car?",
        "Q4": "Do you have a pet?"
    }
}

GET /api/v2/admin/surveys/owner/1

{
    "userid": "1",
    "name": "my firt survey",
    "surveyid": "abc1234f",
    "version": "1",
        "password_enable": true,
    "pages": {
        "Q1": "Do you have a girl friend?",
        "Q2": "Do you have a car?",
        "Q4": "Do you have a pet?"
    }
}

DOD