show how long a session has existed for
This commit is contained in:
parent
8eb3536582
commit
2785f4cb06
2 changed files with 6 additions and 0 deletions
|
@ -57,6 +57,7 @@
|
|||
<th style="width: 10%">ID</th>
|
||||
<th style="width: 50%">Description</th>
|
||||
<th style="width: 20%">Created at</th>
|
||||
<th style="width: 25%">Exists for</th>
|
||||
<th style="width: 15%">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -67,6 +68,7 @@
|
|||
<td>{{ $session.Id }}</td>
|
||||
<td>{{ $session.Description }}</td>
|
||||
<td>{{ $session.CreatedAt.Format "02.01.2006 15:04:05" }}</td>
|
||||
<td>{{ $session.ExistsFor.Round 1000000000 }}</td> {{/* 1 second */}}
|
||||
<td>
|
||||
<form method="post" action="/end_session" enctype="multipart/form-data">
|
||||
<input type="hidden" name="session_id" value="{{ $session.Id }}">
|
||||
|
|
|
@ -8,6 +8,10 @@ type Session struct {
|
|||
CreatedAt time.Time
|
||||
}
|
||||
|
||||
func (s *Session) ExistsFor() time.Duration {
|
||||
return time.Now().Sub(s.CreatedAt)
|
||||
}
|
||||
|
||||
type Storage interface {
|
||||
// Check if the storage contains any sessions
|
||||
HasSessions() (bool, error)
|
||||
|
|
Loading…
Add table
Reference in a new issue