Skip to content

Commit 1a3e48c

Browse files
authored
Merge pull request #46 from saljam/master
use correct content-type for /pairings
2 parents 29b86f8 + e59f2db commit 1a3e48c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ func NewServer(store Store, a *accessory.A, as ...*accessory.A) (*Server, error)
139139
r.Post("/pair-setup", s.pairSetup)
140140
r.Post("/pair-verify", s.pairVerify)
141141
r.Post("/identify", s.identify)
142+
r.Post("/pairings", s.pairings)
142143
})
143144

144145
// The json encoded content is encrypted. The encryption keys
@@ -149,7 +150,6 @@ func NewServer(store Store, a *accessory.A, as ...*accessory.A) (*Server, error)
149150
r.Get("/characteristics", s.getCharacteristics)
150151
r.Put("/characteristics", s.putCharacteristics)
151152
r.Put("/prepare", s.prepareCharacteristics)
152-
r.Post("/pairings", s.pairings)
153153
})
154154

155155
return s, nil

0 commit comments

Comments
 (0)