Results 65 comments of Nicholas Moore
trafficstars

Yes, currently there is no option to choose namespace for import. I would to do it, it is really would helpful for my projects too. But currently I have not...

@danielciobanica Thanks for involve, please read similar issue #36

I will be very glad. All that you need for it is copy path https://github.com/zubroide/gitpab/tree/master/resources/lang/ru (`resources/lang/ru` to `resources/lang/fr`) and make translations. Also add new language into interface: https://github.com/zubroide/gitpab/blob/master/resources/views/vendor/adminlte/page.blade.php#L66-L67

Currently you can find provided spent time in csv (column spent_at): ![image](https://user-images.githubusercontent.com/829880/52167581-589a5900-272e-11e9-8ece-354175206278.png) I use date when it was provided in interface, because this approach exclude manipulations with spent time in...

I think it is better to - add new filter "Spent At" (filter by `spent_at` column) - rename current column "Spent at" to "Created at" - add new column "Spent...

If you don't plan to push changes, it is simplest way, yes. If you plan to push changes into this repo, solution described above is recomendated

You need to replace [next line](https://github.com/zubroide/gitpab/blob/465e71bc79127c5931e7ac9a2941dee9ff86847d/resources/views/gitpab/time/index_table.blade.php#L74) to `{{ \App\Helper\Date::formatDateTime($item->spent_at) }}` And for orderings: Replace [next line](https://github.com/zubroide/gitpab/blob/465e71bc79127c5931e7ac9a2941dee9ff86847d/resources/views/gitpab/time/index_table.blade.php#L22) to `'column' => 'spent.spent_at',` Also add line `'spent.spent_at',` into [this array](https://github.com/zubroide/gitpab/blob/465e71bc79127c5931e7ac9a2941dee9ff86847d/app/Http/Requests/TimeListRequest.php#L8-L12)

Currently I use negative values for it: `/spent -1h`

For this purpose must be edited method [EloquentNoteService::parseSpentTimeItem()](https://github.com/zubroide/gitpab/blob/fb28311e0b8013e7276d950552d3d29e3c22414b/app/Model/Service/Eloquent/EloquentNoteService.php#L66). It must be separated to 2 methods for parsing `/spend x` and for parsing `/remove_time_spent`. In case of `/remove_time_spent` must be calculated...