Skip to content

Commit

Permalink
[OpenWrt] Moved file mode before contents in schema definition
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Mar 11, 2016
1 parent 97fe9f5 commit 04c6058
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions netjsonconfig/backends/openwrt/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,19 +337,19 @@
"type": "string",
"propertyOrder": 1,
},
"contents": {
"type": "string",
"format": "textarea",
"propertyOrder": 2,
},
"mode": {
"type": "string",
"maxLength": 4,
"minLength": 3,
"pattern": "^[0-7]*$",
"default": DEFAULT_FILE_MODE,
"propertyOrder": 2,
},
"contents": {
"type": "string",
"format": "textarea",
"propertyOrder": 3,
}
},
}
}
}
Expand Down

0 comments on commit 04c6058

Please sign in to comment.