dev vouch dev on at. thats about it atvouch.dev
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix

authored by

Luna and committed by tangled.org 25e444ba d121b122

+16 -10
+16 -10
appview/lib/atvouch/application.ex
··· 55 55 56 56 defp vouch_tap(config) do 57 57 [ 58 - {Atvouch.Tap.Socket, 59 - name: Atvouch.Tap.VouchSocket, 60 - uri: Keyword.fetch!(config, :uri), 61 - handler: Atvouch.TapHandler, 62 - password: Keyword.get(config, :password)} 58 + Supervisor.child_spec( 59 + {Atvouch.Tap.Socket, 60 + name: Atvouch.Tap.VouchSocket, 61 + uri: Keyword.fetch!(config, :uri), 62 + handler: Atvouch.TapHandler, 63 + password: Keyword.get(config, :password)}, 64 + id: Atvouch.Tap.VouchSocket 65 + ) 63 66 ] 64 67 end 65 68 ··· 67 70 68 71 defp tangled_tap(config) do 69 72 [ 70 - {Atvouch.Tap.Socket, 71 - name: Atvouch.Tap.TangledSocket, 72 - uri: Keyword.fetch!(config, :uri), 73 - handler: Atvouch.TapHandler, 74 - password: Keyword.get(config, :password)} 73 + Supervisor.child_spec( 74 + {Atvouch.Tap.Socket, 75 + name: Atvouch.Tap.TangledSocket, 76 + uri: Keyword.fetch!(config, :uri), 77 + handler: Atvouch.TapHandler, 78 + password: Keyword.get(config, :password)}, 79 + id: Atvouch.Tap.TangledSocket 80 + ) 75 81 ] 76 82 end 77 83 end