Unverified Commit 6f6fa1eb authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #238 from dilallkx/kd_sp17_dev_fe

Network Connectivity support in Frontend + Frontend fixes
parents 10eb448d 0d13a72c
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.6.9
version: 1.6.10
repo:
  name: AdvantEDGE

@@ -20,6 +20,13 @@ repo:
  #  Deployment
  #------------------------------
  deployment:
    # permissions
    permissions:
      # user id
      uid: 1000
      # group id
      gid: 1000

    # user supplied resources
    user:
      # user supplied frontend UI located @ .meep/user/frontend
@@ -49,7 +56,7 @@ repo:
    auth:
      # enable authentication & authorization
      enabled: true
      # Is platform [open|secure] for all github/gitlab users or only selected ones
      # Provider-authenticated users allowed (open) or limited to user database (secure)
      provider-mode: open
      # Session config
      session:
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2021-04-19T10:44:08.773-04:00
- Build date: 2021-04-27T13:27:50.414-04:00


### Running the server
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 0.0.1
- Build date: 2021-04-19T10:44:10.976-04:00
- Build date: 2021-04-27T13:27:51.883-04:00


### Running the server
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 1.0.0
- Build date: 2021-04-19T10:44:06.799-04:00
- Build date: 2021-04-27T13:27:49.060-04:00


### Running the server
+4 −4
Original line number Diff line number Diff line
@@ -40,6 +40,10 @@ func Login(w http.ResponseWriter, r *http.Request) {
	asLogin(w, r)
}

func LoginSupported(w http.ResponseWriter, r *http.Request) {
	asLoginSupported(w, r)
}

func LoginUser(w http.ResponseWriter, r *http.Request) {
	asLoginUser(w, r)
}
@@ -51,7 +55,3 @@ func Logout(w http.ResponseWriter, r *http.Request) {
func TriggerWatchdog(w http.ResponseWriter, r *http.Request) {
	asTriggerWatchdog(w, r)
}

func LoginSupported(w http.ResponseWriter, r *http.Request) {
	asLoginSupported(w, r)
}
Loading