Skip to content
Snippets Groups Projects
Verified Commit e6f0e39b authored by Andrej Ramašeuski's avatar Andrej Ramašeuski
Browse files

Fix pozvanek

parent 43ea81a3
No related branches found
No related tags found
No related merge requests found
Pipeline #19397 passed
0.14.1 0.15.1
...@@ -130,6 +130,8 @@ sub startup( $self ) { ...@@ -130,6 +130,8 @@ sub startup( $self ) {
$r->get('/login')->to('Auth#callback'); $r->get('/login')->to('Auth#callback');
$r->get('/logout')->to('Auth#do_logout'); $r->get('/logout')->to('Auth#do_logout');
$r->get('/guest/:token')->to('Invites#meet');
$r->get('/')->requires(authenticated => 1)->to(cb => sub { shift->render('meets'); }); $r->get('/')->requires(authenticated => 1)->to(cb => sub { shift->render('meets'); });
$r->get('/')->to(cb => sub { shift->render('index'); }); $r->get('/')->to(cb => sub { shift->render('index'); });
...@@ -139,7 +141,6 @@ sub startup( $self ) { ...@@ -139,7 +141,6 @@ sub startup( $self ) {
$c->session->{id} = $c->stash->{id}; $c->session->{id} = $c->stash->{id};
$c->render('index'); $c->render('index');
}); });
$r->get('/guest/:token')->to('Invites#meet');
$r->websocket('/ws')->to('Websockets#main'); $r->websocket('/ws')->to('Websockets#main');
} }
......
...@@ -51,7 +51,6 @@ sub create($c) { ...@@ -51,7 +51,6 @@ sub create($c) {
} }
sub meet($c) { sub meet($c) {
my $invite = $c->schema->resultset('Invite')->search({ my $invite = $c->schema->resultset('Invite')->search({
token => uc($c->stash->{token}), token => uc($c->stash->{token}),
# expire => {'>' => \'now()'}, # zatim nebudeme limitovat casove # expire => {'>' => \'now()'}, # zatim nebudeme limitovat casove
......
...@@ -10,9 +10,7 @@ ...@@ -10,9 +10,7 @@
<div> <div>
<div class="container container--wide navbar__content" :class="{'navbar__content--initialized': true}"> <div class="container container--wide navbar__content" :class="{'navbar__content--initialized': true}">
<div class="navbar__brand my-4 flex items-center lg:pr-8 lg:my-0"> <div class="navbar__brand my-4 flex items-center lg:pr-8 lg:my-0">
<a href="/"> <a href="/"><img src="<%= config->{styleguide} %>/images/logo-round-white.svg" class="w-8" /></a>
<img src="<%= config->{styleguide} %>/images/logo-round-white.svg" class="w-8" />
</a>
<span class="pl-4 font-bold text-xl lg:pr-8"><a href="/"><%= config->{name} %> - <%= config->{description} %></a></span> <span class="pl-4 font-bold text-xl lg:pr-8"><a href="/"><%= config->{name} %> - <%= config->{description} %></a></span>
</div> </div>
<div class="navbar__menutoggle my-4 flex justify-end lg:hidden"> <div class="navbar__menutoggle my-4 flex justify-end lg:hidden">
...@@ -21,18 +19,18 @@ ...@@ -21,18 +19,18 @@
</a> </a>
</div> </div>
<div v-if="show || isLgScreenSize" class="navbar__main navbar__section navbar__section--expandable container-padding--zero lg:container-padding--auto flex items-center"> <div v-if="show || isLgScreenSize" class="navbar__main navbar__section navbar__section--expandable container-padding--zero lg:container-padding--auto flex items-center">
<div class="flex-grow"> <div class="flex-grow"></div>
% if (current_user) {
</div>
<div class="flex items-center space-x-4"> <div class="flex items-center space-x-4">
<div class="flex items-center space-x-4"> <div class="flex items-center space-x-4">
<span class="head-heavy-2xs"><%= current_user->{displayname} %></span> <span class="head-heavy-2xs"><%= current_user->{displayname} %></span>
<div class="avatar avatar--2xs"> <div class="avatar avatar--2xs">
<img src="<%= config->{piratar}%>64/<%= current_user->{username} %>.jpg" alt="<%= current_user->{displayname} %>" /> <img src="<%= config->{piratar}%>64/<%= current_user->{username} %>.jpg" alt="<%= current_user->{displayname} %>" />
</div> </div>
<a href="/logout"><button class="text-grey-200 hover:text-white"><i class="ico--log-out"></i></button></a> <a href="/logout"><button class="text-grey-200 hover:text-white"><i class="ico--log-out"></i></button></a>
</div> </div>
</div> </div>
% }
</div> </div>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment